Skip to content

Commit 6b1badc

Browse files
committed
edits
1 parent d97cb6e commit 6b1badc

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

source/fundamentals/crud/read-operations/limit.txt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,12 @@ In this guide, you can learn how to use the {+driver-long+} to perform **limit**
2424
operations to limit the number of returned documents from a read operation.
2525

2626
Use the ``limit()`` method to cap the number of documents that a read operation
27-
can return. The operation will return a smaller number of documents if there are
28-
not enough documents present to reach the specified limit.
27+
can return. The operation returns fewer documents if there are not enough
28+
documents present to reach the specified limit.
2929

3030
If you use the ``limit()`` method with the ``skip()`` method, the skip applies
31-
first and the limit only applies to the documents remaining after the skip. To
32-
learn more about skip operations, see :ref:`Skip Returned Results
33-
<rust-skip-guide>`.
31+
first, and the limit only applies to the remaining documents. To learn more
32+
about skip operations, see :ref:`Skip Returned Results <rust-skip-guide>`.
3433

3534
Sample Data for Examples
3635
------------------------
@@ -77,7 +76,7 @@ to the ``find()`` method.
7776
This example runs a ``find()`` operation that performs the following actions:
7877

7978
- Sorts the results in ascending order of their ``length`` field values
80-
- Limits the results to the first two results
79+
- Limits the results to the first three results
8180

8281
.. io-code-block::
8382
:copyable: true

source/fundamentals/crud/read-operations/retrieve.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ following documentation:
389389
- :ref:`rust-aggregation` guide
390390
- :ref:`rust-sort-guide` guide
391391
- :ref:`rust-skip-guide` guide
392-
- :ref:`rust-limit-guide`
392+
- :ref:`rust-limit-guide` guide
393393
.. - :ref:`rust-project-guide`
394394
.. - :ref:`rust-collations-guide`
395395

0 commit comments

Comments
 (0)