Skip to content

Commit f43f5c9

Browse files
committed
fix
1 parent 9934475 commit f43f5c9

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)