From 9f7fae211d275357f66c81ef673513377ea54bfc Mon Sep 17 00:00:00 2001 From: Ellen Kraffmiller Date: Wed, 30 Oct 2024 18:26:13 -0400 Subject: [PATCH] Update src/collections/domain/useCases/GetCollection.ts fix comments in GetCollection.ts Co-authored-by: German Gonzalo Saracca --- src/collections/domain/useCases/GetCollection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/collections/domain/useCases/GetCollection.ts b/src/collections/domain/useCases/GetCollection.ts index c4145503..38f1d6d6 100644 --- a/src/collections/domain/useCases/GetCollection.ts +++ b/src/collections/domain/useCases/GetCollection.ts @@ -13,7 +13,7 @@ export class GetCollection implements UseCase { * Returns a Collection instance, given the search parameters to identify it. * * @param {number | string} [collectionIdOrAlias = ':root'] - A generic collection identifier, which can be either a string (for queries by CollectionAlias), or a number (for queries by CollectionId) - * If this parameter is not set, the default value is: 'root' + * If this parameter is not set, the default value is: ':root' * @returns {Promise} */ async execute(collectionIdOrAlias: number | string = ROOT_COLLECTION_ID): Promise {