Skip to content

Commit 3cb8f19

Browse files
committed
fix: function documentation
1 parent c50b63e commit 3cb8f19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/collections/domain/useCases/PublishCollection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class PublishCollection implements UseCase<void> {
1111
/**
1212
* Publishes a collection, given its identifier and the type of version update type.
1313
*
14-
* @param {number | string} [collectionId] - The collection identifier, which can be a string (for collection alias), or a number (for numeric identifiers).
14+
* @param {number | string} [collectionIdOrAlias] - The collection identifier, which can be a string (for collection alias), or a number (for numeric identifiers).
1515
* @returns {Promise<void>} - This method does not return anything upon successful completion.
1616
*/
1717
async execute(collectionIdOrAlias: number | string): Promise<void> {

0 commit comments

Comments
 (0)