Skip to content

Minor: fixes duplicated terms #1171

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
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion source/reference/command/text.txt
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ The :dbcommand:`text` command returns the following data:
.. data:: text.stats.nfound

The :data:`~text.stats.nfound` field returns the total number
number of documents that match. This number may be greater than
of documents that match. This number may be greater than
the size of the :data:`~text.results` array, i.e.
:data:`~text.stats.n`, if the result set exceeds the
:limit:`BSON Document Size`.
Expand Down
2 changes: 1 addition & 1 deletion source/tutorial/sort-results-with-indexes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ The sort document can be a subset of a compound index that does **not**
start from the beginning of the index. For instance, ``{ c: 1 }`` is a
subset of the index ``{ a: 1, b: 1, c: 1, d: 1 }`` that omits the
preceding index fields ``a`` and ``b``. MongoDB can use the index
efficiently **if** the the query document includes all the preceding
efficiently **if** the query document includes all the preceding
fields of the index, in this case ``a`` and ``b``, in **equality**
conditions. In other words, the equality conditions in the query
document and the subset in the sort document **contiguously** cover a
Expand Down