@@ -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
413413The 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
0 commit comments