Skip to content

Commit 4ee975f

Browse files
mongoKartrustagir
andauthored
Apply suggestions from code review
Co-authored-by: Rea Rustagi <[email protected]>
1 parent 8afa5b8 commit 4ee975f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ the following ``BulkWriteModel`` classes:
5050
- ``BulkWriteDeleteOneModel<TDocument>``
5151
- ``BulkWriteDeleteManyModel<TDocument>``
5252

53-
The following sections show how to create and use instances of the preceding classes.
53+
The following sections show how to create and use instances of the preceding classes
54+
to perform the corresponding write operation in a bulk write.
5455

5556
.. tip:: Bulk Write Operations with POCOs
5657

@@ -104,7 +105,7 @@ into the ``sample_restaurants.restaurants`` collection.
104105
Update Operations
105106
~~~~~~~~~~~~~~~~~
106107

107-
To update a document, create an instance of the ``BulkWriteUpdateOneModel<TDocument>``
108+
To update a single document, create an instance of the ``BulkWriteUpdateOneModel<TDocument>``
108109
class. The ``BulkWriteUpdateOneModel<TDocument>`` constructor accepts the following
109110
parameters:
110111

@@ -359,9 +360,9 @@ the operations in the order they're defined in the collection.
359360
``Array`` and ``List`` are two common classes that implement the ``IReadOnlyList``
360361
interface.
361362

362-
The following code examples show how to use the asynchronous
363+
Select from the following tabs to view how to use the asynchronous
363364
``BulkWriteAsync()`` method and the synchronous ``BulkWrite()`` method to
364-
perform multiple write operations.
365+
perform a bulk write operation.
365366

366367
.. tabs::
367368

0 commit comments

Comments
 (0)