Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8356d31

Browse files
committedMar 12, 2025·
edits
1 parent 3ab04cc commit 8356d31

File tree

1 file changed

+4
-4
lines changed
  • source/fundamentals/crud/write-operations

1 file changed

+4
-4
lines changed
 

‎source/fundamentals/crud/write-operations/bulk.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ collection, create an ``InsertOneModel`` specifying the document you want to ins
230230
insert multiple documents, create an ``InsertOneModel`` for each
231231
document you want to insert.
232232

233-
To define an insert operation for a bulk write on multiple collections,
233+
To define an insert operation for a bulk write on multiple namespaces,
234234
create a ``ClientInsertOneModel`` specifying the document you want to
235235
insert. To insert multiple documents, create a ``ClientInsertOneModel`` for each
236236
document you want to insert.
@@ -283,7 +283,7 @@ To replace multiple documents, create a ``ReplaceOneModel`` for
283283
each document you want to replace.
284284

285285
To define a replace operation for a bulk write on multiple
286-
collections, create a ``ClientReplaceOneModel`` specifying the document
286+
namespaces, create a ``ClientReplaceOneModel`` specifying the document
287287
you want to replace and a replacement document. To replace
288288
multiple documents, create a ``ClientReplaceOneModel`` for
289289
each document you want to replace.
@@ -357,7 +357,7 @@ the document you want to update and an :ref:`update document
357357
``UpdateManyModel``.
358358

359359
To define an update operation for a bulk write on multiple
360-
collections, create a ``ClientUpdateOneModel`` specifying
360+
namespaces, create a ``ClientUpdateOneModel`` specifying
361361
the document you want to update and an update document.
362362
To update multiple documents, use a ``ClientUpdateManyModel``.
363363

@@ -434,7 +434,7 @@ the document you want to delete. To delete multiple documents, use the
434434
``DeleteManyModel``.
435435

436436
To define a delete operation for a bulk write on multiple
437-
collections, create a ``ClientDeleteOneModel`` specifying
437+
namespaces, create a ``ClientDeleteOneModel`` specifying
438438
the document you want to delete. To delete multiple documents, use the
439439
``ClientDeleteManyModel``.
440440

0 commit comments

Comments
 (0)
Please sign in to comment.