Skip to content

Commit e2575be

Browse files
committed
fixes
1 parent c86f88c commit e2575be

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

source/fundamentals/builders/filters.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ type, which you can pass to any method that expects a query filter.
6262

6363
import com.mongodb.client.model.Filters.*
6464

65-
Most of the ``Filter`` examples in this guide use the following sample collection ``paints``:
65+
Most of the ``Filters`` examples in this guide use the following sample
66+
collection ``paints``:
6667

6768
.. code-block:: json
6869

@@ -83,7 +84,7 @@ with the Kotlin driver:
8384

8485
.. tip:: Filters and Data Class Properties
8586

86-
You can use methods from the ``Filters`` directly with data class
87+
You can use methods from the ``Filters`` class directly with data class
8788
properties. To learn more and view examples, see the
8889
:ref:`kotlin-data-class-query` section of the Document Data Format:
8990
Data Classes guide.

source/fundamentals/data-formats/document-data-format-data-class.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,11 @@ For more information about this feature, see :ref:`Specify Return Type
9090
Querying Data Classes
9191
---------------------
9292

93-
You can use helpers from the ``Filter`` builders class to query on data
94-
class properties. The following code uses the ``Filters.eq()`` method to
93+
You can use helpers from the ``Filters`` builders class to query on data
94+
class properties. To learn more about this class, see the
95+
:ref:`filters-builders` guide.
96+
97+
The following code uses the ``Filters.eq()`` method to
9598
construct the same query on the ``DataStorage`` data class in multiple syntaxes:
9699

97100
.. literalinclude:: /examples/generated/DataClassTest.snippet.filters-query-data-class.kt

source/usage-examples/updateMany.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ bottom of this page.
5656
Example
5757
-------
5858

59-
In this example, we use a ``Filter`` builder to filter our query for
59+
In this example, we use a ``Filters`` builder to filter our query for
6060
movies in the genre "Frequently Discussed".
6161

6262
Next, we update documents that match our query in the ``movies`` collection of the

source/usage-examples/updateOne.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ bottom of this page.
5454
Example
5555
-------
5656

57-
In this example, we use a ``Filter`` builder to query the collection for
57+
In this example, we use a ``Filters`` builder to query the collection for
5858
a movie with the title "Cool Runnings 2".
5959

6060
Next, we perform the following updates to the first match for our query

0 commit comments

Comments
 (0)