File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ storage utilization for these collections:
174
174
175
175
To optimize storage use, users can specify a value for the ``_id`` field
176
176
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
178
178
that would have occupied space in another portion of the document.
179
179
180
180
You can store any value in the ``_id`` field, but because this value
Original file line number Diff line number Diff line change @@ -158,5 +158,5 @@ findAndModify
158
158
159
159
This command obtains a write lock on the affected database and
160
160
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
162
162
similar :method:`update() <db.collection.update()>` operations.
Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ those documents.
210
210
Journaling
211
211
``````````
212
212
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
214
214
fine, as journaling does not change anything about the data file format.
215
215
Suppose you are running 1.8.x with journaling enabled and you decide to
216
216
switch back to 1.6. There are two scenarios:
Original file line number Diff line number Diff line change @@ -539,7 +539,7 @@ Return Total Number of Joins per Month
539
539
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
540
540
541
541
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
543
543
strategies.
544
544
545
545
.. code-block:: javascript
@@ -576,7 +576,7 @@ the following operations:
576
576
operator increments this field by 1 for every document containing
577
577
the given ``month_joined`` value.
578
578
579
- - The :agg:pipeline:`$sorte ` operator sorts the documents created by
579
+ - The :agg:pipeline:`$sort ` operator sorts the documents created by
580
580
:agg:pipeline:`$group` according to the contents of the
581
581
``month_joined`` field.
582
582
Original file line number Diff line number Diff line change @@ -328,7 +328,7 @@ Enabling Sharding on the Database Level
328
328
```````````````````````````````````````
329
329
330
330
Issue the :dbcommand:`enableSharding` command. The following example
331
- emables sharding on the "test" database:
331
+ enables sharding on the "test" database:
332
332
333
333
.. code-block:: javascript
334
334
You can’t perform that action at this time.
0 commit comments