Skip to content

Commit 035c8ae

Browse files
author
Ed Costello
committed
typo edit run
1 parent 8bfdb28 commit 035c8ae

16 files changed

+23
-23
lines changed

source/administration/sharding.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ The procedure to remove a shard is as follows:
311311

312312
.. code-block:: javascript
313313

314-
db.runCommand( { removeshard: "mongodb0" } )
314+
db.runCommand( { removeShard: "mongodb0" } )
315315

316316
This operation will return the following response immediately:
317317

@@ -377,7 +377,7 @@ The procedure to remove a shard is as follows:
377377

378378
.. code-block:: javascript
379379

380-
db.runCommand( { removeshard: "mongodb0" } )
380+
db.runCommand( { removeShard: "mongodb0" } )
381381

382382
When successful, this command will return a document like this:
383383

source/applications/map-reduce.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ map-reduce:
197197
}
198198
);
199199

200-
.. _map-reduce-temporay-collection:
200+
.. _map-reduce-temporary-collection:
201201

202202
Temporary Collection
203203
--------------------

source/applications/replication.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ for a replica set. Use the :data:`settings.getLastErrorDefaults` setting
6767
in the :doc:`replica set configuration
6868
</reference/replica-configuration>`. The following sequence of commands
6969
creates a configuration that waits for the write operation to complete
70-
on a majority of the set members beforBe returning:
70+
on a majority of the set members before returning:
7171

7272
.. code-block:: javascript
7373

source/core/data-modeling.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Atomicity
146146

147147
MongoDB only provides atomic operations on the level of a single
148148
document. [#record-atomicity]_ As a result needs for atomic operations influence decisions
149-
to use embeded or referenced relationships when modeling data for
149+
to use embedded or referenced relationships when modeling data for
150150
MongoDB.
151151

152152
Embed fields that need to be modified together atomically in the same
@@ -245,7 +245,7 @@ the size of the ``<database>.ns`` file, pass a new size to
245245
:option:`--nssize option \<new size MB\> <mongod --nssize>` on server
246246
start.
247247

248-
.. todo make a tutoiral called "how to change size of namespace file"
248+
.. todo make a tutorial called "how to change size of namespace file"
249249

250250
The :option:`--nssize <mongod --nssize>` sets the size for *new*
251251
``<database>.ns`` files. For existing databases, after starting up the

source/core/write-operations.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ concern requirements:
207207
If you disable basic write operation acknowledgment but require
208208
journal commit acknowledgment, the journal commit prevails, and
209209
the driver will require that :program:`mongod` will
210-
acknowladge the replica set.
210+
acknowledge the replica set.
211211

212212
- ``1``:
213213

source/reference/config-database.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Collections
122122

123123
.. data:: changelog.ns
124124

125-
Namespace where the change occured.
125+
Namespace where the change occurred.
126126

127127
.. data:: changelog.details
128128

source/reference/method/cursor.min.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ cursor.min()
2727
*in order*. You can explicitly specify the particular index
2828
with the :method:`hint() <cursor.hint()>` method. Otherwise,
2929
MongoDB selects the index using the fields in the
30-
``indexbounds``; however, if multiple indexes exist on same
30+
``indexBounds``; however, if multiple indexes exist on same
3131
fields with different sort orders, the selection of the index
3232
may be ambiguous.
3333

source/reference/mongodb-extended-json.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ MongoDB can process of these representations in REST input.
2525

2626
Special representations of :term:`BSON data <BSON types>` in JSON
2727
format make it possible to render information that have no obvious
28-
corresponding JSON. In some cases MongoDB supports multiple equivelent
28+
corresponding JSON. In some cases MongoDB supports multiple equivalent
2929
representations of the same type information. Consider the following
3030
table:
3131

source/reference/operator/min.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $min
3737

3838
You can explicitly specify the corresponding index with
3939
:method:`cursor.hint()`. Otherwise, MongoDB selects the index using
40-
the fields in the ``indexbounds``; however, if multiple indexes
40+
the fields in the ``indexBounds``; however, if multiple indexes
4141
exist on same fields with different sort orders, the selection of
4242
the index may be ambiguous.
4343

source/release-notes/2.4.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ indexes:
328328
*However*, hashed indexes may be smaller than a normal index when
329329
the values of the indexed field are larger than 64 bits. [#hash-size]_
330330

331-
- it's possible to have a hashed and non-hased index on the same
331+
- it's possible to have a hashed and non-hashed index on the same
332332
field: MongoDB will use the non-hashed for range queries.
333333

334334
.. _hashed-index-warning:

source/tutorial/backup-sharded-cluster-with-database-dumps.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ In this procedure, you will stop the cluster balancer and take a backup
2828
up of the :term:`config database`, and then take backups of each
2929
shard in the cluster using :program:`mongodump` to capture the backup
3030
data. If you need an exact moment-in-time snapshot of the system, you will
31-
need to stop all application writes before taking the filesysem
31+
need to stop all application writes before taking the filesystem
3232
snapshots; otherwise the snapshot will only approximate a moment of
3333
time.
3434

@@ -95,7 +95,7 @@ shard.
9595
dump to the ``/data/backup/`` directory.
9696

9797
#. Restart all stopped replica set members of each shard as normal and
98-
allow them to catch up wit hthe state of the primary.
98+
allow them to catch up with the state of the primary.
9999

100100
#. Restore the balancer with the :method:`sh.startBalancer()` method
101101
according to the :ref:`sharding-balancing-disable-temporally`

source/tutorial/backup-sharded-cluster-with-filesystem-snapshots.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ In this procedure, you will stop the cluster balancer and take a backup
2828
up of the :term:`config database`, and then take backups of each
2929
shard in the cluster using a file-system snapshot tool. If you need an
3030
exact moment-in-time snapshot of the system, you will need to stop all
31-
application writes before taking the filesysem snapshots; otherwise
31+
application writes before taking the filesystem snapshots; otherwise
3232
the snapshot will only approximate a moment of in time.
3333

3434
For approximate point-in-time snapshots, you can improve the quality

source/tutorial/create-tailable-cursor.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ By default, MongoDB will automatically close a cursor when the client
1111
has exhausted all results in the cursor. However, for :doc:`capped
1212
collections </core/capped-collections>` you may use a *Tailable
1313
Cursor* that remains open after the client exhausts the results in the
14-
initial causer. Taliable cursors are conceptually equivelent to the
14+
initial cursor. Tailable cursors are conceptually equivalent to the
1515
``tail`` Unix command with the ``-f`` option (i.e. with "follow"
1616
mode.) After clients insert new additional documents into a capped
1717
collection, the tailable cursor will to continue to retrieve

source/tutorial/getting-started-with-the-mongo-shell.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To start the :program:`mongo` shell and connect to your :doc:`MongoDB
4949
To list the available databases, use the command ``show dbs``. See
5050
also :ref:`mongo-shell-getSiblingDB` to access a different database
5151
from the current database without switching your current database
52-
contentx (i.e. ``db.``.)
52+
context (i.e. ``db.``.)
5353

5454
To start the :program:`mongo` shell with other options, see
5555
:ref:`examples of starting up mongo <mongo-usage-examples>` and

source/tutorial/manage-the-database-profiler.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The following profiling levels are available:
4242

4343
You can modify the threshold for "slow" operations with the
4444
:setting:`slowms` runtime option or the :dbcommand:`set Parameter`
45-
method. See the :ref:`database-profiling-specifiy-slowms-threshold`
45+
method. See the :ref:`database-profiling-specify-slowms-threshold`
4646
section for more information.
4747

4848
- ``2`` - collects profiling data for all database operations.
@@ -87,7 +87,7 @@ The ``"ok" : 1`` key-value pair indicates the operation succeeded:
8787
To verify the new setting, see the
8888
:ref:`database-profiling-view-status` section.
8989

90-
.. _database-profiling-specifiy-slowms-threshold:
90+
.. _database-profiling-specify-slowms-threshold:
9191

9292
Specify the Threshold for Slow Operations
9393
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

source/tutorial/remove-shards-from-cluster.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ begins "draining" chunks from the shard you are removing.
5757

5858
.. code-block:: javascript
5959

60-
db.runCommand( { removeshard: "mongodb0" } )
60+
db.runCommand( { removeShard: "mongodb0" } )
6161

6262
This operation returns immediately, with the following response:
6363

@@ -78,7 +78,7 @@ process, as follows:
7878

7979
.. code-block:: javascript
8080

81-
db.runCommand( { removeshard: "mongodb0" } )
81+
db.runCommand( { removeShard: "mongodb0" } )
8282

8383
The output resembles the following document:
8484

@@ -90,7 +90,7 @@ In the ``remaining`` sub document, a counter displays the remaining number
9090
of chunks that MongoDB must migrate to other shards and the number of
9191
MongoDB databases that have "primary" status on this shard.
9292

93-
Continue checking the status of the `removeshard` command until the
93+
Continue checking the status of the `removeShard` command until the
9494
number of chunks remaining is 0. Then proceed to the next step.
9595

9696
Move Unsharded Databases
@@ -131,7 +131,7 @@ information and finalize the removal, as follows:
131131

132132
.. code-block:: javascript
133133

134-
db.runCommand( { removeshard: "mongodb0" } )
134+
db.runCommand( { removeShard: "mongodb0" } )
135135

136136
A success message appears at completion:
137137

0 commit comments

Comments
 (0)