Skip to content

Commit 16ea3f9

Browse files
committed
RR review
1 parent 1c05525 commit 16ea3f9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

source/crud/query/retrieve.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ see the :ref:`node-fundamentals-query-document` guide.
9393

9494
You can chain cursor methods to a find operation even when you pass an
9595
empty query. For example, the following code shows how you can
96-
specify a projection while executing a find operation
96+
specify a projection while performing a find operation
9797
that receives an empty query parameter:
9898

9999
.. code-block:: javascript

source/crud/query/specify-documents-to-return.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,10 @@ that describe books into the ``myDB.books`` collection:
4949

5050
.. note::
5151

52-
When you chain ``sort()``, ``limit()``, or ``skip()`` to a read operation, you must
53-
specify all methods before iterating the cursor. If you specify a method after
54-
iterating the cursor, the method you specified does not apply to the operation.
52+
You must chain ``FindCursor`` methods such as ``sort()``, ``limit()``, or
53+
``skip()`` to a read operation before iterating the cursor. If you specify
54+
a ``FindCursor`` method after iterating the cursor, the setting does not
55+
apply to the operation.
5556

5657
.. include:: /includes/access-cursor-note.rst
5758

0 commit comments

Comments
 (0)