File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
source/fundamentals/crud/read-operations Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ pulling all matching documents into a collection in process memory.
59
59
60
60
Because asynchronous calls directly modify the cursor, executing
61
61
asynchronous calls on a single cursor simultaneously can also cause
62
- undefined behaviour . Always wait for the previous
62
+ undefined behavior . Always wait for the previous
63
63
asynchronous operation to complete before running another.
64
64
65
65
.. note::
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ Coordinates on a 2D Plane
70
70
~~~~~~~~~~~~~~~~~~~~~~~~~
71
71
72
72
You can also express geospatial queries using ``x`` and ``y`` coordinates in
73
- a two-dimentional Euclidian plane. Until MongoDB, this was the only format
73
+ a two-dimensional Euclidean plane. Until MongoDB, this was the only format
74
74
compatible with geospatial queries, and are now referred to as
75
75
"legacy coordinate pairs".
76
76
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ Watch / Subscribe
147
147
You can use the ``watch()`` method to monitor a collection for changes to
148
148
a collection that match certain criteria. These changes include inserted,
149
149
updated, replaced, and deleted documents. You can pass this method
150
- a pipeline of aggregation comands that sequentially runs on the changed
150
+ a pipeline of aggregation commands that sequentially runs on the changed
151
151
data whenever write operations are executed on the collection.
152
152
153
153
.. example::
You can’t perform that action at this time.
0 commit comments