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:

0 commit comments

Comments
 (0)