Skip to content

Commit 373d9dc

Browse files
edit
1 parent 7fb5768 commit 373d9dc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/fundamentals/builders.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ Use builders to check which documents in the collection have a
105105
var builder = Builders<Flower>.Filter;
106106
var filter = builder.AnyEq(f => f.Season, "winter");
107107

108-
You can also use the ``ElemMatch()`` method to find documents that contain an
109-
array field that contains at least one element that matches your search criteria. The
110-
following example returns documents that contain the value ``"Summer"`` in
111-
their ``Season`` array:
108+
You can also call the ``ElemMatch()`` method to find documents that have an
109+
array field that contains at least one element that matches a specified search
110+
criteria. The following example returns documents that contain the value
111+
``"Summer"`` in their ``Season`` array:
112112

113113
.. code-block:: csharp
114114
:copyable: true

0 commit comments

Comments
 (0)