Skip to content

Commit 4b4a1bc

Browse files
author
Sam Kleinman
committed
fix: build error
1 parent 1d851d7 commit 4b4a1bc

File tree

1 file changed

+13
-17
lines changed

1 file changed

+13
-17
lines changed

source/reference/operators.txt

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -50,29 +50,29 @@ Comparison
5050
.. TODO move the following note into a querying page, and link in
5151
every above included query operator page.
5252

53-
You may combine comparison operators to specify ranges:
53+
You may combine comparison operators to specify ranges:
5454

55-
.. code-block:: javascript
55+
.. code-block:: javascript
5656

57-
db.collection.find( { field: { $gt: value1, $lt: value2 } } );
57+
db.collection.find( { field: { $gt: value1, $lt: value2 } } );
5858

59-
This statement returns all documents with ``field`` between
60-
``value1`` and ``value2``.
59+
This statement returns all documents with ``field`` between
60+
``value1`` and ``value2``.
6161

62-
.. note::
62+
.. note::
6363

64-
Fields containing arrays match conditional operators, if only one
65-
item matches. Therefore, the following query:
64+
Fields containing arrays match conditional operators, if only one
65+
item matches. Therefore, the following query:
6666

67-
.. code-block:: javascript
67+
.. code-block:: javascript
6868

69-
db.collection.find( { field: { $gt:0, $lt:2 } } );
69+
db.collection.find( { field: { $gt:0, $lt:2 } } );
7070

71-
Will match a document that contains the following field:
71+
Will match a document that contains the following field:
7272

73-
.. code-block:: javascript
73+
.. code-block:: javascript
7474

75-
{ field: [-1,3] }
75+
{ field: [-1,3] }
7676

7777
.. index:: query selectors; logical
7878
.. _query-selectors-logical:
@@ -136,16 +136,12 @@ Geospatial
136136
.. include:: operator/maxDistance.txt
137137
:start-after: mongodb
138138

139-
.. include:: operator/uniqueDocs.txt
140-
:start-after: mongodb
141-
142139
.. include:: operator/nearSphere.txt
143140
:start-after: mongodb
144141

145142
.. include:: operator/centerSphere.txt
146143
:start-after: mongodb
147144

148-
149145
.. index:: query selectors; array
150146
.. _query-selectors-array:
151147

0 commit comments

Comments
 (0)