Skip to content

Commit cbab8b4

Browse files
author
Sam Kleinman
committed
merge: DOCS-637
2 parents 8835d99 + abd8213 commit cbab8b4

27 files changed

+49
-49
lines changed

draft/administration/production-notes.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ components.
2929
This section contains notes on specific network configurations
3030
relevant to production deployments of MongoDB.
3131

32-
.. TODO link to MongDB security section when available.
32+
.. TODO link to MongoDB security section when available.
3333

3434
Default Port Numbers used by MongoDB
3535
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -58,7 +58,7 @@ lists the default ports that MongoDB components use.
5858
- :option:`mongod --shardsvr`
5959
- 27018
6060
* - :ref:`Config Server <sharding-config-server>` (used in sharding)
61-
- :option:`mongod --configsrv`
61+
- :option:`mongod --configsvr`
6262
- 27019
6363
* - :ref:`HTTP REST interface <rest-interface>`
6464
- :option:`mongod --rest`
@@ -91,7 +91,7 @@ MongoDB uses the firewall rules listed here.
9191
* - :program:`mongod`
9292
- Outgoing
9393
- */27017
94-
- Repilca set members, Shard routers (:program:`mongos` instances)
94+
- Replica set members, Shard routers (:program:`mongos` instances)
9595
* - :program:`mongos`
9696
- Incoming
9797
- 27017/*

draft/applications/geospatial-indexes.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ queries for a particular distance around a certain point.
340340
Spherical
341341
~~~~~~~~~
342342

343-
By default, MongoDB uses flat geometry to calculate distances betwen
343+
By default, MongoDB uses flat geometry to calculate distances between
344344
points. MongoDB also supports distance calculations using spherical
345345
geometry to provide accurate distances for geospatial information
346346
based on a sphere or earth.
@@ -371,7 +371,7 @@ spherical geometry is the ``{ spherical: true }`` option.
371371
sphere (e.g. the Earth) in the same units as the distance
372372
measurement.
373373

374-
- *radians to distance*: multiply the radian measure by the radius
374+
- *radians to distance*: multiply the rad ian measure by the radius
375375
of the sphere (e.g. the Earth) in the units system that you want to
376376
convert the distance to.
377377

draft/core/read-operations.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ the following resources:
484484

485485
- :ref:`An Introduction to Shard Keys <sharding-shard-key>`
486486
- :ref:`Shard Key Internals and Operations <sharding-internals-shard-keys>`
487-
- :ref:`Quering Sharded Clusters <sharding-internals-querying>`
487+
- :ref:`Querying Sharded Clusters <sharding-internals-querying>`
488488
- :ref:`sharding-mongos`
489489

490490
Replica Sets

draft/use-cases/gaming-user-state.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ To display the armor, then, you would use the following code:
327327

328328
>>> item_index = get_item_index(
329329
... character['inventory'] + character['location']['inventory'])
330-
>>> armor = get_armor_for_dislay(character, item_index)
330+
>>> armor = get_armor_for_display(character, item_index)
331331

332332
This operation builds an index for the items the character is actually
333333
carrying in inventory in addition to the items that the player might

source/administration/backups.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ The above command sequence:
253253
- Ensures that the ``/dev/vg0/mdb-snap01`` device is not mounted.
254254

255255
- Does a block level copy of the entire snapshot image using the ``dd``
256-
command, and compresses the result in a gziped tar archive in the
256+
command, and compresses the result in a gzipped tar archive in the
257257
current working directory.
258258

259259
.. warning::

source/administration/replica-sets.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ To check the current length of replication lag:
662662
syncedTo: Tue Oct 02 2012 11:33:40 GMT-0400 (EDT)
663663
= 7475 secs ago (2.08hrs)
664664

665-
.. note:: The :method:`rs.status()` method is a wrapper around hthe
665+
.. note:: The :method:`rs.status()` method is a wrapper around the
666666
:dbcommand:`replSetGetStatus` database command.
667667

668668
- Monitor the rate of replication by watching the oplog time in the

source/administration/sharding.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ to pre-splitting.
747747

748748
.. versionadded:: 2.2
749749
:dbcommand:`moveChunk` command has the: ``_secondaryThrottle``
750-
paramenter. When set to ``true``, MongoDB ensures that
750+
parameter. When set to ``true``, MongoDB ensures that
751751
:term:`secondary` members have replicated operations before allowing
752752
new chunk migrations.
753753

source/applications/database-references.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ MongoDB applications use one of two methods for relating documents:
2929
must perform additional queries to return the referenced
3030
documents. Many :doc:`drivers </applications/drivers>` have helper
3131
methods that form the query for the DBRef automatically. The
32-
drivers [#offical-driver]_ do not *automatically* resolve DBRefs
32+
drivers [#official-driver]_ do not *automatically* resolve DBRefs
3333
into documents.
3434

3535
Use a DBRef when you need to embed documents from multiple
@@ -42,7 +42,7 @@ MongoDB applications use one of two methods for relating documents:
4242
Unless you have a compelling reason for using a DBref use manual
4343
references.
4444

45-
.. [#offical-driver] Some community supported drivers may have
45+
.. [#official-driver] Some community supported drivers may have
4646
alternate behavior and may resolve a DBRef into a document
4747
automatically.
4848

source/applications/replication.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ behavior <replica-set-read-preference-behavior>`. See also the
331331
member's :term:`primary` or :term:`secondary` status.
332332

333333
For :readmode:`nearest`, the client assembles a list of
334-
acceptble hosts based on tag set and then narrows that list to
334+
acceptable hosts based on tag set and then narrows that list to
335335
the host with the shortest ping time and all other members of
336336
the set that are within the "local threshold," or acceptable
337337
latency. See :ref:`replica-set-read-preference-behavior-nearest`

source/core/sharding-internals.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,9 @@ Furthermore:
212212
entire shard is unreachable or fails for some reason, that data will
213213
be unavailable.
214214

215-
- If the shaqrd key allows the :program:`mongos` to isolate most
216-
operations to a single shard, then the failure of a single will
217-
only render *some* data unavailable.
215+
- If the shard key allows the :program:`mongos` to isolate most
216+
operations to a single shard, then the failure of a single shard
217+
will only render *some* data unavailable.
218218

219219
- If your shard key distributes data required for every operation
220220
throughout the cluster, then the failure of the entire shard will
@@ -484,7 +484,7 @@ evenly among shards. Migrations may be either:
484484

485485
All chunk migrations use the following procedure:
486486

487-
#. The balancer process sends the :dbCommand:`moveChunk` command to
487+
#. The balancer process sends the :dbcommand:`moveChunk` command to
488488
the source shard for the chunk. In this operation the balancer
489489
passes the name of the destination shard to the source shard.
490490

0 commit comments

Comments
 (0)