diff --git a/source/tutorial/analyze-query-plan.txt b/source/tutorial/analyze-query-plan.txt index 30e8684113b..00e46a28fdd 100644 --- a/source/tutorial/analyze-query-plan.txt +++ b/source/tutorial/analyze-query-plan.txt @@ -102,7 +102,7 @@ To view the query plan selected, use the documents. - :data:`executionStats.totalDocsExamined - ` display ``10`` to + ` displays ``10`` to indicate that MongoDB had to scan ten documents (i.e. all documents in the collection) to find the three matching documents. @@ -174,11 +174,11 @@ The :method:`~cursor.explain()` method returns the following results: documents. - :data:`executionStats.totalKeysExamined - ` display ``3`` to indicate + ` displays ``3`` to indicate that MongoDB scanned three index entries. - :data:`executionStats.totalDocsExamined - ` display ``3`` to indicate + ` displays ``3`` to indicate that MongoDB scanned three documents. When run with an index, the query scanned ``3`` index entries and ``3``