Skip to content

Commit 95e1427

Browse files
committed
small fix
1 parent 0aa6107 commit 95e1427

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

source/crud/write-operations/bulk.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ contains an added ``location`` field:
165165
If multiple documents match the query filter specified in
166166
the ``ReplaceOneModel`` instance, the operation replaces the first
167167
result. You can specify a sort in a ``ReplaceOptions`` instance to apply
168-
an order to matched documents before the driver performs the replace
168+
an order to matched documents before the server performs the replace
169169
operation, as shown in the following code:
170170

171171
.. code-block:: java
@@ -216,7 +216,7 @@ the ``age`` field in a document where the ``_id`` is ``2``:
216216
If multiple documents match the query filter specified in
217217
the ``UpdateOneModel`` instance, the operation updates the first
218218
result. You can specify a sort in an ``UpdateOptions`` instance to apply
219-
an order to matched documents before the driver performs the update
219+
an order to matched documents before the server performs the update
220220
operation, as shown in the following code:
221221

222222
.. code-block:: java

source/crud/write-operations/modify.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ The following example demonstrates how to change the value of the
102102
If multiple documents match the query filter specified in
103103
the ``updateOne()`` method, it updates the first result. You can
104104
specify a sort in an ``UpdateOptions`` instance to apply an order to
105-
matched documents before the driver performs the update operation, as
105+
matched documents before the server performs the update operation, as
106106
shown in the following code:
107107

108108
.. literalinclude:: /includes/fundamentals/code-snippets/Update.java
@@ -234,7 +234,7 @@ The following shows the updated document:
234234
If multiple documents match the query filter specified in
235235
the ``replaceOne()`` method, it replaces the first result. You can
236236
specify a sort in a ``ReplaceOptions`` instance to apply an order to
237-
matched documents before the driver performs the replace operation, as
237+
matched documents before the server performs the replace operation, as
238238
shown in the following code:
239239

240240
.. literalinclude:: /includes/fundamentals/code-snippets/Update.java

0 commit comments

Comments
 (0)