File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
source/fundamentals/crud/write-operations Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ fewer database calls. You can perform bulk write operations at the following lev
2929
3030- :ref:`Collection <java-sync-coll-bulk-write>`: You can use the
3131 ``MongoCollection.bulkWrite()`` method to perform bulk write operations on a
32- single collection. This method groups write operations together by the kind
33- of operation . For example, ``MongoCollection.bulkWrite()`` puts multiple update
32+ single collection. In this method, each kind of write operation requires at
33+ least one database call . For example, ``MongoCollection.bulkWrite()`` puts multiple update
3434 operations in one call, but makes two separate calls to the database for an insert
3535 operation and a replace operation.
3636
You can’t perform that action at this time.
0 commit comments