@@ -10,7 +10,7 @@ Database References
10
10
.. default-domain:: mongodb
11
11
12
12
MongoDB does not support joins. In MongoDB some data is
13
- "denormalized," or stored with related data in :term:`documents
13
+ "denormalized", or stored with related data in :term:`documents
14
14
<document>` to remove the need for joins. However, in some cases it
15
15
makes sense to store related information in separate documents,
16
16
typically in different collections or databases.
@@ -39,7 +39,7 @@ MongoDB applications use one of two methods for relating documents:
39
39
links between documents if your database must interact with
40
40
multiple frameworks and tools.
41
41
42
- Unless you have a compelling reason for using a DBRef use manual
42
+ Unless you have a compelling reason for using a DBRef, use manual
43
43
references.
44
44
45
45
.. [#official-driver] Some community supported drivers may have
@@ -108,7 +108,7 @@ Background
108
108
~~~~~~~~~~
109
109
110
110
DBRefs are a convention for representing a :term:`document`, rather
111
- than a specific reference "type." They include the name of the
111
+ than a specific reference "type". They include the name of the
112
112
collection, and in some cases the database, in addition to the
113
113
value from the ``_id`` field.
114
114
@@ -144,7 +144,7 @@ Thus a DBRef document would resemble the following:
144
144
145
145
.. note::
146
146
147
- The order of fields in the DBRef matter , and you must use the above
147
+ The order of fields in the DBRef matters , and you must use the above
148
148
sequence when using a DBRef.
149
149
150
150
Support
0 commit comments