Skip to content

Minor typos on read.txt document #824

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/core/read.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ syntax:
Return All Documents in a Collection
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If there is no ``<query>`` argument, the :method:`
~db.collection.find()` method selects all documents from a collection.
If there is no ``<query>`` argument, the :method:`~db.collection.find()`
method selects all documents from a collection.

The following operation returns all documents (or more precisely, a
cursor to all documents) in the ``bios`` collection:
Expand Down Expand Up @@ -550,7 +550,7 @@ more information regarding cursors.
.. [#dbquery-server] Regardless of the order you chain the
:method:`~cursor.limit()` and the :method:`~cursor.sort()`, the
request to the server has the structure that treats the
query and the :method:` ~cursor.sort()` modifier as a single object.
query and the :method:`~cursor.sort()` modifier as a single object.
Therefore, the :method:`~cursor.limit()` operation method is always
applied after the :method:`~cursor.sort()` regardless of the
specified order of the operations in the chain. See the :doc:`meta
Expand Down