Skip to content
Merged
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/tutorial/analyze-query-plan.txt
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ To view the query plan selected, use the
documents.

- :data:`executionStats.totalDocsExamined
<explain.executionStats.totalDocsExamined>` display ``10`` to
<explain.executionStats.totalDocsExamined>` displays ``10`` to
indicate that MongoDB had to scan ten documents (i.e. all documents
in the collection) to find the three matching documents.

Expand Down Expand Up @@ -174,11 +174,11 @@ The :method:`~cursor.explain()` method returns the following results:
documents.

- :data:`executionStats.totalKeysExamined
<explain.executionStats.totalKeysExamined>` display ``3`` to indicate
<explain.executionStats.totalKeysExamined>` displays ``3`` to indicate
that MongoDB scanned three index entries.

- :data:`executionStats.totalDocsExamined
<explain.executionStats.totalDocsExamined>` display ``3`` to indicate
<explain.executionStats.totalDocsExamined>` displays ``3`` to indicate
that MongoDB scanned three documents.

When run with an index, the query scanned ``3`` index entries and ``3``
Expand Down