Skip to content

Commit e62a39f

Browse files
author
Ed Costello
committed
Mass typo cleanup, ran entire document lib through spell check.
also fixed spelling of several commands and options after verifying in source (eg: --jsonnp changed to --jsonp)
1 parent b02f35e commit e62a39f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+92
-91
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ build/*
44
\#*#
55
*__pycache__*
66
*.pyc
7+
*.bak

source/about.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ About MongoDB
1111

1212
MongoDB is a :term:`document`-oriented database management system
1313
designed for performance, horizontal scalability, high
14-
availability, and advanced queryabiliy. See the following :wiki:`wiki
14+
availability, and advanced queryability. See the following :wiki:`wiki
1515
pages <>` for more information about MongoDB:
1616

1717
- :wiki:`Introduction`
@@ -65,7 +65,7 @@ via "|hardlink|" and you can always reference the commit of the
6565
current manual in the :hardlink:`release.txt` file.
6666

6767
The most up-to-date, current, and stable version of the manual is
68-
always avalible at "http://docs.mongodb.org/manual/."
68+
always available at "http://docs.mongodb.org/manual/."
6969

7070
Contributing to the Documentation
7171
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -100,6 +100,6 @@ necessary Sphinx extensions and build tools, are available in the same
100100
repository as the documentation.
101101

102102
You can view the documentation style guide and the build instructions
103-
in reSturctured Text files in the top-level of the `documentation
103+
in reStructured Text files in the top-level of the `documentation
104104
repository <https://github.com/mongodb/docs>`_. If you have any
105105
questions, please feel free to open a :issue:`Jira Case <DOCS>`.

source/administration/backups.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ reliably, and typically provide the easiest backup systems method to
108108
implement.
109109

110110
Snapshots work by creating pointers between the live data and a
111-
special snapshot volume: these pointers are theoretically equivelent
111+
special snapshot volume: these pointers are theoretically equivalent
112112
to "hard links." Then, as the working data diverges from the snapshot,
113113
the snapshot process uses a copy-on-write strategy. As a result the snapshot
114114
only stores modified data.
@@ -469,7 +469,7 @@ example:
469469

470470
.. code-block:: sh
471471

472-
mongodump --host mongodb1.example.net --port 3017 --username user --password pass /opt/backup/mongodumpm-2011-10-24
472+
mongodump --host mongodb1.example.net --port 3017 --username user --password pass /opt/backup/mongodump-2011-10-24
473473

474474
On any :program:`mongodump` command you may, as above specify username
475475
and password credentials to specify database authentication.
@@ -495,7 +495,7 @@ the dump. Consider the following example:
495495

496496
.. code-block:: sh
497497

498-
mongorestore --host mongodb1.example.net --port 3017 --username user --password pass /opt/backup/mongodumpm-2011-10-24
498+
mongorestore --host mongodb1.example.net --port 3017 --username user --password pass /opt/backup/mongodump-2011-10-24
499499

500500
On any :program:`mongorestore` command you may, as above specify
501501
username and password credentials as above.

source/administration/configuration.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ While both interfaces provide access the same collection of options
1515
and settings, this document primarily uses the configuration file
1616
interface. If you run MongoDB using a control script or packaged for
1717
your operating system, you likely already have a configuration file
18-
located at ``/etc/mogondb.conf``. Confirm this by checking the content
18+
located at ``/etc/mongodb.conf``. Confirm this by checking the content
1919
of the ``/etc/init.d/mongod`` or ``/etc/rc.d/mongod`` script to
2020
insure that the :term:`control scripts <control script>` start the
2121
:program:`mongod` with the appropriate configuration file (see below.)

source/administration/monitoring.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ Balancing and Chunk Distribution
428428
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
429429

430430
The most effective :term:`shard clusters <shard cluster>` require that
431-
:term:`chunks <chunk>` are evenly balanaced between the shards. MongoDB
431+
:term:`chunks <chunk>` are evenly balanced between the shards. MongoDB
432432
has a background :term:`balancer` process that distributes data such that
433433
chunks are always optimally distributed among the :term:`shards <shard>`.
434434
Issue the :func:`db.printShardingStatus()` or :func:`sh.status()`

source/administration/replica-sets.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ This operation sets the following:
321321

322322
If your replica set has an even number members, add an
323323
:ref:`arbiter <replica-set-arbiters>` to ensure that
324-
nodes wil be able to quickly obtain a majority of votes in an
324+
nodes will be able to quickly obtain a majority of votes in an
325325
:ref:`election <replica-set-elections>` for primary.
326326

327327
.. seealso:: ":data:`members[n].priority`" and ":ref:`Replica Set

source/administration/sharding.txt

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

397397
.. code-block:: javascript
398398

399-
{ msg: "remove shard completed succesfully" , stage: "completed", host: "mongodb0", ok : 1 }
399+
{ msg: "remove shard completed successfully" , stage: "completed", host: "mongodb0", ok : 1 }
400400

401401
Once the value of the ``stage`` field is "completed," you may safely
402402
stop the processes comprising the ``mongodb0`` shard.
@@ -516,7 +516,7 @@ To modify the chunk size, use the following procedure:
516516
To eliminate confusion you should *always* set chunk size using the
517517
above procedure and never use the runtime options.
518518

519-
Modifying the chunk size has serveral limitations:
519+
Modifying the chunk size has several limitations:
520520

521521
- Automatic splitting only occurs when inserting :term:`documents
522522
<document>` or updating existing documents.
@@ -668,7 +668,7 @@ be able to migrate chunks:
668668

669669
use config
670670

671-
#. Use an operation modeled on the folloiwng example :func:`update()
671+
#. Use an operation modeled on the following example :func:`update()
672672
<db.collection.update()>` operation to modify the balancer's
673673
window:
674674

source/core/replication.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Member Configurations
4949

5050
All replica sets at most use a single :term:`primary` member and one or
5151
more :term:`secondary` members. Replica sets allow you to configure
52-
secondary members in a variey of ways. This section describes uses and
52+
secondary members in a variety of ways. This section describes uses and
5353
functions of all the replica set member configurations.
5454

5555
.. seealso:: ":ref:`Replica Set Node Configurations

source/core/sharding-internals.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ key, all insert operations will be storing data into a single chunk, and
102102
therefore, a single shard. As a result, the write capacity of this shard
103103
will define the effective write capacity of the cluster.
104104

105-
A shard key that increases monotonically will not hinder perforamnce
105+
A shard key that increases monotonically will not hinder performance
106106
if you have a very low insert rate, or if most of your write
107107
operations are :func:`update() <db.collection.update()>` operations
108108
distributed through your entire data set. Generally, choose shard keys
@@ -202,7 +202,7 @@ are:
202202
- to ensure that :program:`mongos` can isolate most queries to a specific
203203
:program:`mongod`.
204204

205-
Furethermore:
205+
Furthermore:
206206

207207
- Each shard should be a :term:`replica set`, if a specific
208208
:program:`mongod` instance fails, the replica set members will elect

source/faq/developers.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ disk more frequently, so that the above values resents a theoretical
7979
maximum.
8080

8181
However, by default, MongoDB uses a "lazy" strategy to write to
82-
disk. This is advantegous in situations where the database receives a
82+
disk. This is advantageous in situations where the database receives a
8383
thousand increments to an object within one second, MongoDB only needs
8484
to flush this data to disk once. In addition to the aforementioned
8585
configuration options, you can also use :dbcommand:`fsync` and
@@ -147,7 +147,7 @@ Why are MongoDB's data files so large?
147147

148148
MongoDB aggressively preallocates data files to reserve space and
149149
avoid file system fragmentation. You can use the :setting:`smallfiles`
150-
flag to modify the file prealocation strategy.
150+
flag to modify the file preallocation strategy.
151151

152152
.. seealso:: This wiki page that address :wiki:`MongoDB disk use <Excessive+Disk+Space>`.
153153

0 commit comments

Comments
 (0)