From f88f6819596099569ee016a4cd53a68042ee91e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Carlos=20Garc=C3=ADa?= Date: Tue, 2 Feb 2016 11:20:28 +0100 Subject: [PATCH] Fix index intersection example --- source/core/index-intersection.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/index-intersection.txt b/source/core/index-intersection.txt index 2059214d8c2..4459a639b08 100644 --- a/source/core/index-intersection.txt +++ b/source/core/index-intersection.txt @@ -30,7 +30,7 @@ the following query: .. code-block:: javascript - db.orders.find( { item: "abc123", qty: { $gt: 15 } } ) + db.orders.find( { item: "abc123", qty: 15 } ) To determine if MongoDB used index intersection, run :method:`~cursor.explain()`; the results of :ref:`explain()