Skip to content

Commit 3a56384

Browse files
committed
typo fixes surfaced by script (#667)
(cherry picked from commit b6c84af)
1 parent e9809ef commit 3a56384

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

source/fundamentals/crud/read-operations/cursor.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pulling all matching documents into a collection in process memory.
5959

6060
Because asynchronous calls directly modify the cursor, executing
6161
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
6363
asynchronous operation to complete before running another.
6464

6565
.. note::

source/fundamentals/crud/read-operations/geo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Coordinates on a 2D Plane
7070
~~~~~~~~~~~~~~~~~~~~~~~~~
7171

7272
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
7474
compatible with geospatial queries, and are now referred to as
7575
"legacy coordinate pairs".
7676

source/fundamentals/crud/read-operations/retrieve.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Watch / Subscribe
142142
You can use the ``watch()`` method to monitor a collection for changes to
143143
a collection that match certain criteria. These changes include inserted,
144144
updated, replaced, and deleted documents. You can pass this method
145-
a pipeline of aggregation comands that sequentially runs on the changed
145+
a pipeline of aggregation commands that sequentially runs on the changed
146146
data whenever write operations are executed on the collection.
147147

148148
.. example::

0 commit comments

Comments
 (0)