Skip to content

Commit 3c79c76

Browse files
author
Ed Costello
committed
Typo Run
1 parent 3b4f94c commit 3c79c76

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

source/faq/developers.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ storage utilization for these collections:
174174

175175
To optimize storage use, users can specify a value for the ``_id`` field
176176
explicitly when inserting documents into the collection. This
177-
stratgy allows applications to store a value in the ``_id`` field
177+
strategy allows applications to store a value in the ``_id`` field
178178
that would have occupied space in another portion of the document.
179179

180180
You can store any value in the ``_id`` field, but because this value

source/reference/command/findAndModify.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,5 +158,5 @@ findAndModify
158158

159159
This command obtains a write lock on the affected database and
160160
will block other operations until it has completed; however,
161-
typically the write lock is short lived and equivelent to other
161+
typically the write lock is short lived and equivalent to other
162162
similar :method:`update() <db.collection.update()>` operations.

source/release-notes/1.8.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ those documents.
210210
Journaling
211211
``````````
212212

213-
Returning to 1.6 after using 1.8 :wiki:`journaliing <Journaling>` works
213+
Returning to 1.6 after using 1.8 :wiki:`journaling <Journaling>` works
214214
fine, as journaling does not change anything about the data file format.
215215
Suppose you are running 1.8.x with journaling enabled and you decide to
216216
switch back to 1.6. There are two scenarios:

source/tutorial/aggregation-examples.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ Return Total Number of Joins per Month
539539
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
540540

541541
The following operation shows how many people joined each month of the
542-
year. You might use this aggregated datause such information for recruiting and marketing
542+
year. You might use this aggregated data for such information for recruiting and marketing
543543
strategies.
544544

545545
.. code-block:: javascript
@@ -576,7 +576,7 @@ the following operations:
576576
operator increments this field by 1 for every document containing
577577
the given ``month_joined`` value.
578578

579-
- The :agg:pipeline:`$sorte` operator sorts the documents created by
579+
- The :agg:pipeline:`$sort` operator sorts the documents created by
580580
:agg:pipeline:`$group` according to the contents of the
581581
``month_joined`` field.
582582

source/tutorial/convert-replica-set-to-replicated-shard-cluster.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ Enabling Sharding on the Database Level
328328
```````````````````````````````````````
329329

330330
Issue the :dbcommand:`enableSharding` command. The following example
331-
emables sharding on the "test" database:
331+
enables sharding on the "test" database:
332332

333333
.. code-block:: javascript
334334

0 commit comments

Comments
 (0)