Skip to content

Commit 8c04809

Browse files
committed
typo fixes surfaced by script (#667)
(cherry picked from commit b6c84af)
1 parent 5cd3500 commit 8c04809

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
@@ -147,7 +147,7 @@ Watch / Subscribe
147147
You can use the ``watch()`` method to monitor a collection for changes to
148148
a collection that match certain criteria. These changes include inserted,
149149
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
151151
data whenever write operations are executed on the collection.
152152

153153
.. example::

0 commit comments

Comments
 (0)