From a998618d75a9435ce6330b3abcaa27f2c1e255bc Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Mon, 14 Nov 2022 14:43:20 +0200 Subject: [PATCH] updated godoc comment --- daos/collection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daos/collection.go b/daos/collection.go index 5d116b3d..2e8ec550 100644 --- a/daos/collection.go +++ b/daos/collection.go @@ -16,7 +16,7 @@ func (dao *Dao) CollectionQuery() *dbx.SelectQuery { return dao.ModelQuery(&models.Collection{}) } -// FindCollectionsByType finds all collections by the given type +// FindCollectionsByType finds all collections by the given type. func (dao *Dao) FindCollectionsByType(collectionType string) ([]*models.Collection, error) { collections := []*models.Collection{}