@@ -171,9 +171,9 @@ and the equivalent {+mdb-server+} operators:
171171 of the string values in the query array.
172172 - :manual:`$in </reference/operator/query/in/>`
173173
174- The following example specifies a query filter as a parameter to the ``Find()``
175- method . The query matches all documents where the ``establishedYear`` field is
176- greater than ``1985``.
174+ The following example calls the ``Find()`` method and passes a lambda filter, which
175+ the driver translates to a query filter . The query matches all documents where the
176+ ``establishedYear`` field is greater than ``1985``.
177177
178178.. io-code-block::
179179 :copyable:
@@ -202,8 +202,8 @@ same documents as the preceding example:
202202
203203 { "_id" : 4, "make" : "Kiesel", "models" : ["Ares", "Vader", "Solo"], "establishedYear" : 2015, "rating" : null }
204204
205- The following example specifies a query filter as a parameter to the ``Find()``
206- method . The query matches all documents where the
205+ The following example calls the ``Find()`` method and passes a lambda expression, which
206+ the driver translates to a query filter . The query matches all documents where the
207207``make`` field equals "Fender".
208208
209209.. io-code-block::
@@ -277,8 +277,8 @@ and the equivalent {+mdb-server+} operators:
277277 - Matches documents where one or more expressions evaluates to true.
278278 - :manual:`$or </reference/operator/query/or/>`
279279
280- The following example specifies a query filter as a parameter to the ``Find()``
281- method . The query matches all documents where the
280+ The following example calls the ``Find()`` method and passes a lambda expression,
281+ which the driver translates to a query filter . The query matches all documents where the
282282``establishedYear`` field is greater than or equal to ``1985``, and the ``make``
283283field is not equal to "Kiesel".
284284
@@ -590,17 +590,17 @@ bitwise operations and the equivalent {+mdb-server+} operators:
590590 the specified field.
591591 - :manual:`$bitsAllClear </reference/operator/query/bitsAllClear/>`
592592
593- * - ``bitsAllSet ()``
593+ * - ``BitsAllSet ()``
594594 - Matches documents where all of the specified bit positions are set (``1``) in
595595 the specified field.
596596 - :manual:`$bitsAllSet </reference/operator/query/bitsAllSet/>`
597597
598- * - ``bitsAnyClear ()``
598+ * - ``BitsAnyClear ()``
599599 - Matches documents where any of the specified bit positions are clear (``0``) in
600600 the specified field.
601601 - :manual:`$bitsAnyClear </reference/operator/query/bitsAnyClear/>`
602602
603- * - ``bitsAnySet ()``
603+ * - ``BitsAnySet ()``
604604 - Matches documents where any of the specified bit positions are set (``1``) in
605605 the specified field.
606606 - :manual:`$bitsAnySet </reference/operator/query/bitsAnySet/>`
0 commit comments