Skip to content

Commit 578cb8d

Browse files
committed
consolidate
1 parent fa4ff13 commit 578cb8d

File tree

1 file changed

+3
-5
lines changed
  • source/fundamentals/crud/write-operations

1 file changed

+3
-5
lines changed

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -322,11 +322,9 @@ Similarly, the ``MongoClient.bulkWrite()`` method takes a
322322
list of ``ClientNamespacedWriteModel`` instances to represent different write operations.
323323
Instead of selecting a specific subclass for each write operation, the
324324
``ClientNamespacedWriteModel`` object contains different methods to represent
325-
write operations, such as ``ClientNamespacedWriteModel.insertOne()`` or
326-
``ClientNamespacedWriteModel.updateOne()``.
327-
328-
``ClientNamespacedWriteModel`` contains the methods ``insertOne()``, ``updateOne()``,
329-
``updateMany()``, ``replaceOne()``, ``deleteOne()``, and ``deleteMany()``.
325+
write operations. ``ClientNamespacedWriteModel`` contains the methods
326+
``insertOne()``, ``updateOne()``, ``updateMany()``, ``replaceOne()``,
327+
``deleteOne()``, and ``deleteMany()``.
330328

331329
These methods take a ``MongoNamespace`` object that defines which
332330
database and collection to write to, and a ``Document`` object that defines

0 commit comments

Comments
 (0)