@@ -230,7 +230,7 @@ collection, create an ``InsertOneModel`` specifying the document you want to ins
230
230
insert multiple documents, create an ``InsertOneModel`` for each
231
231
document you want to insert.
232
232
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 ,
234
234
create a ``ClientInsertOneModel`` specifying the document you want to
235
235
insert. To insert multiple documents, create a ``ClientInsertOneModel`` for each
236
236
document you want to insert.
@@ -283,7 +283,7 @@ To replace multiple documents, create a ``ReplaceOneModel`` for
283
283
each document you want to replace.
284
284
285
285
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
287
287
you want to replace and a replacement document. To replace
288
288
multiple documents, create a ``ClientReplaceOneModel`` for
289
289
each document you want to replace.
@@ -357,7 +357,7 @@ the document you want to update and an :ref:`update document
357
357
``UpdateManyModel``.
358
358
359
359
To define an update operation for a bulk write on multiple
360
- collections , create a ``ClientUpdateOneModel`` specifying
360
+ namespaces , create a ``ClientUpdateOneModel`` specifying
361
361
the document you want to update and an update document.
362
362
To update multiple documents, use a ``ClientUpdateManyModel``.
363
363
@@ -434,7 +434,7 @@ the document you want to delete. To delete multiple documents, use the
434
434
``DeleteManyModel``.
435
435
436
436
To define a delete operation for a bulk write on multiple
437
- collections , create a ``ClientDeleteOneModel`` specifying
437
+ namespaces , create a ``ClientDeleteOneModel`` specifying
438
438
the document you want to delete. To delete multiple documents, use the
439
439
``ClientDeleteManyModel``.
440
440
0 commit comments