Skip to content

Commit 6c501c1

Browse files
authored
DOCSP-36060-fix-typo (#869)
* DOCSP-36060-fix-typo * RM PR fixes 1
1 parent e4537ac commit 6c501c1

File tree

1 file changed

+4
-3
lines changed
  • source/fundamentals/crud/read-operations

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,10 @@ Limit
5050
-----
5151

5252
The following example queries the collection to return the top three
53-
longest books. It matches all the documents with the query, applies
54-
a ``sort`` on the ``length`` field to return books with longer lengths before
55-
books, and applies a ``limit`` to return only ``3`` results:
53+
longest books. It matches all documents because the query filter is
54+
empty. Then, it applies a descending ``sort`` on the ``length`` field to
55+
return longer books before shorter books and a ``limit`` to
56+
return only the ``3`` first results:
5657

5758
.. code-block:: javascript
5859
:emphasize-lines: 4

0 commit comments

Comments
 (0)