From 93e4140391bc77c6b1d7bb392fceb07a667bca53 Mon Sep 17 00:00:00 2001 From: Cladis Date: Mon, 26 Mar 2018 14:53:17 +0300 Subject: [PATCH 1/2] grammar tweak --- source/tutorial/analyze-query-plan.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tutorial/analyze-query-plan.txt b/source/tutorial/analyze-query-plan.txt index 30e8684113b..6e42d8c32c6 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. From 7643f7a2753a20d4fb4f9a309902110a939ccddc Mon Sep 17 00:00:00 2001 From: Cladis Date: Mon, 26 Mar 2018 14:55:32 +0300 Subject: [PATCH 2/2] Update analyze-query-plan.txt --- source/tutorial/analyze-query-plan.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/tutorial/analyze-query-plan.txt b/source/tutorial/analyze-query-plan.txt index 6e42d8c32c6..00e46a28fdd 100644 --- a/source/tutorial/analyze-query-plan.txt +++ b/source/tutorial/analyze-query-plan.txt @@ -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``