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 {