Skip to content

Commit 0cb0bca

Browse files
committed
mm review
1 parent 57e3bbb commit 0cb0bca

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

source/crud/query.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Read Operations
1212
:titlesonly:
1313
:maxdepth: 1
1414

15-
Specify a Query </crud/query/specify-query>
15+
Specify a Query </crud/query/query-filter>
1616
Find Documents </crud/query/find>
1717
Specify Documents to Return </crud/query/specify-documents-to-return>
1818
Specify Fields to Return </crud/query/project>

source/crud/query/query-filter.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ greater than ``1985``.
183183

184184
.. output::
185185
:language: json
186-
:visible:
186+
:visible: false
187187

188188
{ "_id" : 4, "make" : "Kiesel", "models" : ["Ares", "Vader", "Solo"], "establishedYear" : 2015, "rating" : null }
189189

@@ -198,7 +198,7 @@ same documents as the preceding example:
198198

199199
.. output::
200200
:language: json
201-
:visible:
201+
:visible: false
202202

203203
{ "_id" : 4, "make" : "Kiesel", "models" : ["Ares", "Vader", "Solo"], "establishedYear" : 2015, "rating" : null }
204204

@@ -214,7 +214,7 @@ method. The query matches all documents where the
214214

215215
.. output::
216216
:language: json
217-
:visible:
217+
:visible: false
218218

219219
{ "_id" : 1, "make" : "Fender", "models" : ["Stratocaster", "Telecaster"], "establishedYear" : 1946, "rating" : 9 }
220220

@@ -229,7 +229,7 @@ same documents as the preceding example:
229229

230230
.. output::
231231
:language: json
232-
:visible:
232+
:visible: false
233233

234234
{ "_id" : 1, "make" : "Fender", "models" : ["Stratocaster", "Telecaster"], "establishedYear" : 1946, "rating" : 9 }
235235

@@ -290,7 +290,7 @@ field is not equal to "Kiesel".
290290

291291
.. output::
292292
:language: json
293-
:visible:
293+
:visible: false
294294

295295
{ "_id" : 3, "make" : "PRS", "models" : ["Silver Sky", "SE", "Custom"], "establishedYear" : 1985, "rating" : 9 }
296296

@@ -305,7 +305,7 @@ same documents as the preceding example:
305305

306306
.. output::
307307
:language: json
308-
:visible:
308+
:visible: false
309309

310310
{ "_id" : 3, "make" : "PRS", "models" : ["Silver Sky", "SE", "Custom"], "establishedYear" : 1985, "rating" : 9 }
311311

@@ -411,7 +411,7 @@ and the equivalent {+mdb-server+} operators:
411411
- :manual:`$size </reference/operator/query/size/>`
412412

413413
The following example uses builders to create a query filter that matches all
414-
documents that have three elements in the ``models`` field:
414+
documents that have exactly three elements in the ``models`` field:
415415

416416
.. io-code-block::
417417
:copyable:
@@ -421,7 +421,7 @@ documents that have three elements in the ``models`` field:
421421

422422
.. output::
423423
:language: json
424-
:visible:
424+
:visible: false
425425

426426
{ "_id" : 2, "make" : "Gibson", "models" : ["Les Paul", "SG", "Explorer"], "establishedYear" : 1902, "rating" : 8 }
427427
{ "_id" : 3, "make" : "PRS", "models" : ["Silver Sky", "SE", "Custom"], "establishedYear" : 1985, "rating" : 9 }
@@ -463,7 +463,7 @@ documents that have a ``rating`` field:
463463

464464
.. output::
465465
:language: json
466-
:visible:
466+
:visible: false
467467

468468
{ "_id" : 1, "make" : "Fender", "models" : ["Stratocaster", "Telecaster"], "establishedYear" : 1946, "rating" : 9 }
469469
{ "_id" : 2, "make" : "Gibson", "models" : ["Les Paul", "SG", "Explorer"], "establishedYear" : 1902, "rating" : 8 }
@@ -516,7 +516,7 @@ documents that have a value in the ``make`` field that starts with the letter
516516

517517
.. output::
518518
:language: json
519-
:visible:
519+
:visible: false
520520

521521
{ "_id" : 2, "make" : "Gibson", "models" : ["Les Paul", "SG", "Explorer"], "establishedYear" : 1902, "rating" : 8 }
522522

source/reference/compatibility.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ The first column lists the driver version.
4141

4242
.. include:: /includes/language-compatibility-table-csharp.rst
4343

44-
For more information on how to read the compatibility tables, see our guide on
45-
:ref:`MongoDB Compatibility Tables. <about-driver-compatibility>`
44+
For more information about how to read the compatibility tables, see
45+
`MongoDB Compatibility Tables <https://www.mongodb.com/docs/drivers/about-compatibility/>`__.

0 commit comments

Comments
 (0)