Skip to content

Commit d14dc1c

Browse files
committed
fix useCases.md comments
1 parent f2fe7a8 commit d14dc1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/useCases.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ createCollection.execute(collectionDTO).then((createdCollectionId: number) => {
228228

229229
_See [use case](../src/collections/domain/useCases/CreateCollection.ts) implementation_.
230230

231-
The above example creates the new collection in the `:root` collection since no collection identifier is specified. If you want to create the collection in a different collection, you must add the collection identifier as a second parameter in the use case call.
231+
The above example creates the new collection in the root collection since no collection identifier is specified. If you want to create the collection in a different collection, you must add the collection identifier as a second parameter in the use case call.
232232

233233
The use case returns a number, which is the identifier of the created collection.
234234

@@ -513,7 +513,7 @@ createDataset.execute(datasetDTO).then((newDatasetIds: CreatedDatasetIdentifiers
513513

514514
_See [use case](../src/datasets/domain/useCases/CreateDataset.ts) implementation_.
515515

516-
The above example creates the new dataset in the `:root` collection since no collection identifier is specified. If you want to create the dataset in a different collection, you must add the collection identifier as a second parameter in the use case call.
516+
The above example creates the new dataset in the root collection since no collection identifier is specified. If you want to create the dataset in a different collection, you must add the collection identifier as a second parameter in the use case call.
517517

518518
The use case returns a [CreatedDatasetIdentifiers](../src/datasets/domain/models/CreatedDatasetIdentifiers.ts) object, which includes the persistent and numeric identifiers of the created dataset.
519519

0 commit comments

Comments
 (0)