@@ -304,7 +304,7 @@ This method accepts the following parameters:
304
304
305
305
You can use the
306
306
: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.
308
308
If you're using the LINQ3 provider, the {+driver-short+} also supports LINQ syntax in
309
309
place of the positional operator.
310
310
@@ -314,7 +314,7 @@ First Matching Value
314
314
~~~~~~~~~~~~~~~~~~~~
315
315
316
316
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.
318
318
319
319
.. note ::
320
320
@@ -332,7 +332,7 @@ All Matching Values
332
332
~~~~~~~~~~~~~~~~~~~
333
333
334
334
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.
336
336
337
337
The following example uses the ``Set() `` method and the filtered positional operator
338
338
to update the ``Score `` property of all matching
@@ -344,7 +344,7 @@ All Values
344
344
~~~~~~~~~~
345
345
346
346
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.
348
348
349
349
The following example uses the ``Set() `` method and the all-positional operator
350
350
to update the ``Score `` property of all ``GradeEntry `` objects in the ``Grades `` array
0 commit comments