Skip to content

Commit 9c2a412

Browse files
author
Sam Kleinman
committed
minor: build errror fixes
1 parent 3653829 commit 9c2a412

File tree

2 files changed

+13
-22
lines changed

2 files changed

+13
-22
lines changed

source/core/read-operations.txt

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -93,19 +93,10 @@ For additional documentation and examples of the main MongoDB read
9393
operators, refer to the :doc:`/applications/read` page of the
9494
:doc:`/crud` section.
9595

96-
.. [#formal-query-structure]
97-
:method:`db.collection.find( \<query\>, \<projection\> )
98-
<db.collection.find()>` is a wrapper for the more formal query
99-
structure with the :operator:`$query` operator:
96+
.. [#formal-query-structure] :method:`db.collection.find()` is a
97+
wrapper for the more formal query structure with the
98+
:operator:`$query` operator.
10099

101-
.. code-block:: javascript
102-
103-
db.collection.find( { $query: <query>, ... }, <projection> )
104-
105-
Within the formal structure, in addition to the :operator:`$query`
106-
operator, you can use the :doc:`meta query operators
107-
</reference/meta-query-operators>` to modify the behavior of the
108-
query.
109100

110101
.. _read-operations-query-document:
111102
.. _read-operations-query-argument:
@@ -222,7 +213,7 @@ Subdocuments
222213
When the field holds an embedded document (i.e. subdocument), you can
223214
either specify the entire subdocument as the value of a field, or
224215
"reach into" the subdocument using :term:`dot notation`, to specify
225-
values for individual fields in the subdocument:
216+
values for individual fields in the subdocument:
226217

227218
- Equality matches within subdocuments select documents if the
228219
subdocument matches *exactly* the specified subdocument, including the
@@ -245,7 +236,7 @@ values for individual fields in the subdocument:
245236

246237
- Equality matches for specific fields within subdocuments select
247238
documents when the field in the subdocument contains a field that
248-
matches the specified value.
239+
matches the specified value.
249240

250241
In the following example, the query uses the :term:`dot notation` to
251242
match all documents where the value of the field ``producer`` is a
@@ -344,7 +335,7 @@ subdocuments:
344335
to ``'on time'`` and the field ``by`` equal to ``'shipping'``:
345336

346337
.. code-block:: javascript
347-
338+
348339
db.inventory.find( { memos: {
349340
$elemMatch: {
350341
memo : 'on time',

source/crud.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ deployments. The :doc:`/core/document` provides an overview of
2424
.. toctree::
2525
:maxdepth: 2
2626

27-
/core/read-operations
28-
/core/write-operations
29-
/core/document
27+
core/read-operations
28+
core/write-operations
29+
core/document
3030

3131
.. _crud-documents:
3232
.. _crud-operations:
@@ -40,7 +40,7 @@ MongoDB.
4040
.. toctree::
4141
:maxdepth: 2
4242

43-
/applications/create
44-
/applications/read
45-
/applications/update
46-
/applications/delete
43+
applications/create
44+
applications/read
45+
applications/update
46+
applications/delete

0 commit comments

Comments
 (0)