Skip to content

Commit b850736

Browse files
committed
vale
1 parent ec2d51f commit b850736

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,8 @@ Customize the Replace Operation
116116
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
117117

118118
The ``ReplaceOne()`` and ``ReplaceOneAsync()`` methods optionally accept a
119-
``ReplaceOptions`` object as an
120-
additional parameter, which represents options you can use to configure the replace
121-
operation.
119+
``ReplaceOptions`` object as a parameter, which represents options you can use to
120+
configure the replace operation.
122121

123122
The ``ReplaceOptions`` class contains the following properties:
124123

source/includes/page-templates/update/arrays.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ This method accepts the following parameters:
304304

305305
You can use the
306306
:manual:`positional operator </reference/operator/update/positional/#mongodb-update-up.->`
307-
in combination with the ``Set()`` method to query and update specific values in the array.
307+
with the ``Set()`` method to query and update specific values in the array.
308308
If you're using the LINQ3 provider, the {+driver-short+} also supports LINQ syntax in
309309
place of the positional operator.
310310

@@ -314,7 +314,7 @@ First Matching Value
314314
~~~~~~~~~~~~~~~~~~~~
315315

316316
To update only the first value in an array that matches a query filter, use the
317-
positional operator (``$``) in combination with the ``Set()`` method.
317+
positional operator (``$``) with the ``Set()`` method.
318318

319319
.. note::
320320

@@ -332,7 +332,7 @@ All Matching Values
332332
~~~~~~~~~~~~~~~~~~~
333333

334334
To update all values in an array that match a specified condition, use the filtered
335-
positional operator (``$[<identifier>]``) in combination with the ``Set()`` method.
335+
positional operator (``$[<identifier>]``) with the ``Set()`` method.
336336

337337
The following example uses the ``Set()`` method and the filtered positional operator
338338
to update the ``Score`` property of all matching
@@ -344,7 +344,7 @@ All Values
344344
~~~~~~~~~~
345345

346346
To update all values in an array that match a query filter, use the all-positional operator
347-
(``$[]``) in combination with the ``Set()`` method.
347+
(``$[]``) with the ``Set()`` method.
348348

349349
The following example uses the ``Set()`` method and the all-positional operator
350350
to update the ``Score`` property of all ``GradeEntry`` objects in the ``Grades`` array

0 commit comments

Comments
 (0)