Skip to content

Commit a710593

Browse files
committed
NR PR fixes 1
1 parent 5861f44 commit a710593

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/fundamentals/read-operations.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ You can use one of the following ``where()`` method calls to build a query:
7676
To apply multiple sets of criteria to the find operation, you can chain a series
7777
of ``where()`` methods together.
7878

79-
After building your query with the ``where()`` method, chain the ``get()``
79+
After building your query by using the ``where()`` method, chain the ``get()``
8080
method to retrieve the query results.
8181

8282
This example calls two ``where()`` methods on the ``Movie`` Eloquent model to
@@ -165,7 +165,7 @@ query on an array field:
165165
that matches documents in which the array field value contains one or
166166
more of the specified array elements
167167

168-
After building your query with the ``where()`` method, chain the ``get()``
168+
After building your query by using the ``where()`` method, chain the ``get()``
169169
method to retrieve the query results.
170170

171171
Select from the following :guilabel:`Exact Array Match` and
@@ -251,7 +251,7 @@ by the ``$search`` field in your query filter that you pass to the
251251
``where()`` method. The ``$text`` operator performs a text search on the
252252
text-indexed fields. The ``$search`` field specifies the text to search for.
253253

254-
After building your query with the ``where()`` method, chain the ``get()``
254+
After building your query by using the ``where()`` method, chain the ``get()``
255255
method to retrieve the query results.
256256

257257
This example calls the ``where()`` method on the ``Movie`` Eloquent model to

0 commit comments

Comments
 (0)