Skip to content

Commit aab83a3

Browse files
author
Ed Costello
committed
Edits for style: remove doublings of words across a number of files.
Q: most of the doubled words were really short, am wondering if this is something I introduced with one of the earlier spell check runs, or if there's some other automated thing we're using that caused this?
1 parent 4d7f593 commit aab83a3

27 files changed

+36
-36
lines changed

source/administration/backups.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ This procedure describes both approaches:
660660
only need to back up one config server, as they all have replicas of
661661
the same information.
662662

663-
Issue this command against one of the the config server itself or the
663+
Issue this command against one of the config server itself or the
664664
:program:`mongos`:
665665

666666
.. code-block:: sh

source/administration/indexes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ To return a list of all indexes on a collection, use the, use the
238238
:method:`db.collection.getIndexes()` method or a similar
239239
:api:`method for your driver <>`.
240240

241-
For example, to view all indexes on the the ``people`` collection:
241+
For example, to view all indexes on the ``people`` collection:
242242

243243
.. code-block:: javascript
244244

source/administration/security.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ HTTP Status Interface
352352
The HTTP status interface provides a web-based interface that includes
353353
a variety of operational data, logs, and status reports regarding the
354354
:program:`mongod` or :program:`mongos` instance. The HTTP interface is
355-
always available on the the port numbered ``1000`` greater than the
355+
always available on the port numbered ``1000`` greater than the
356356
primary :program:`mongod` port. By default this is ``28017``, but is
357357
indirectly set using the :setting:`port` option which allows you to
358358
configure the primary :program:`mongod` port.

source/administration/sharding.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ list of databases with sharding enabled:
417417
{ "_id" : "animals", "partitioned" : true, "primary" : "m0.example.net:30001" }
418418
{ "_id" : "farms", "partitioned" : false, "primary" : "m1.example2.net:27017" }
419419

420-
Then sharding is only enabled for the the ``animals`` database.
420+
Then sharding is only enabled for the ``animals`` database.
421421

422422
List Shards
423423
~~~~~~~~~~~

source/core/sharding.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ possible. Operations have the following targeting characteristics:
419419
stores this data.
420420

421421
For queries that include the shard key, :program:`mongos` can target
422-
the query at a specific shard or set set of shards, if the portion
422+
the query at a specific shard or set of shards, if the portion
423423
of the shard key included in the query is a *prefix* of the shard
424424
key. For example, if the shard key is:
425425

source/faq/developers.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ storage utilization for these collections:
178178
that would have occupied space in another portion of the document.
179179

180180
You can store any value in the ``_id`` field, but because this value
181-
serves as a a primary key for documents in the collection, it must
181+
serves as a primary key for documents in the collection, it must
182182
uniquely identify them. If the field's value is not unique, then it
183183
cannot serve as a primary key as there would be collisions in
184184
collection.

source/reference/command/cloneCollectionAsCapped.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ cloneCollectionAsCapped
3030
- MongoDB will transverse the documents in the original collection
3131
in :term:`natural order <natural order>` as they're loaded.
3232

33-
- If the ``capped size`` specified for the new collection collection is
33+
- If the ``capped size`` specified for the new collection is
3434
smaller than the size of the original uncapped collection, then
3535
MongoDB will begin overwriting earlier documents in
3636
insertion order, which is *first in, first out* (e.g "FIFO").

source/reference/command/compact.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ compact
106106

107107
- :dbcommand:`compact` blocks all other activity. In MongoDB 2.2,
108108
:dbcommand:`compact` blocks activities only for its database. You
109-
may view the intermediate progress either by viewing the the
109+
may view the intermediate progress either by viewing the
110110
:program:`mongod` log file, or by running the
111111
:method:`db.currentOp()` in another shell instance.
112112

source/reference/command/convertToCapped.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ convertToCapped
2525
command exhibit the following behavior:
2626

2727
- MongoDB transverses the documents in the original collection in
28-
:term:`natural order` and loads the documents into into a new
28+
:term:`natural order` and loads the documents into a new
2929
capped collection.
3030

3131
- If the ``capped size`` specified for the capped collection is

source/reference/command/copydb.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ copydb
3232
You can omit the ``fromhost`` argument, to copy one database to
3333
another database within a single MongoDB instance.
3434

35-
You must run this command on the the destination, or the ``todb``
35+
You must run this command on the destination, or the ``todb``
3636
server.
3737

3838
Be aware of the following behaviors:

0 commit comments

Comments
 (0)