Skip to content

Commit 95d9a22

Browse files
committed
Fix typos in replication section
1 parent 395d524 commit 95d9a22

9 files changed

+13
-13
lines changed

source/administration/replica-set-deployment.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Replica Set Deployment Tutorials
1010
:depth: 1
1111
:class: singlecol
1212

13-
The following tutorials provide information in deploying replica sets.
13+
The following tutorials provide information on deploying replica sets.
1414

1515
.. class:: toc
1616

source/administration/replica-set-member-configuration.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Member Configuration Tutorials
1010
:depth: 1
1111
:class: singlecol
1212

13-
The following tutorials provide information in configuring replica set
13+
The following tutorials provide information on configuring replica set
1414
members to support specific operations, such as to provide dedicated
1515
backups, to support reporting, or to act as a cold standby.
1616

@@ -21,7 +21,7 @@ backups, to support reporting, or to act as a cold standby.
2121
.. class:: toc
2222

2323
:doc:`/tutorial/adjust-replica-set-member-priority`
24-
Change the precedence given to a replica set members in an
24+
Change the precedence given to a replica set member in an
2525
election for primary.
2626

2727
:doc:`/tutorial/configure-secondary-only-replica-set-member`

source/core/replica-set-arbiter.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Replica Set Arbiter
1818
In some circumstances (such as you have a primary and a secondary but
1919
cost constraints prohibit adding another secondary), you may choose to
2020
add an arbiter to your replica set. An arbiter does **not** have a copy
21-
of data set and **cannot** become a primary. However, an arbiter
21+
of the data set and **cannot** become a primary. However, an arbiter
2222
participates in :ref:`elections for primary <replica-set-elections>`.
2323
An arbiter has exactly ``1`` election vote.
2424

source/core/replica-set-architectures.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The architecture of a :term:`replica set <replica set>` affects the
1717
set's capacity and capability. This document provides strategies for
1818
replica set deployments and describes common architectures.
1919

20-
The standard replica set deployment for production system is a
20+
The standard replica set deployment for a production system is a
2121
three-member replica set. These sets provide redundancy and fault
2222
tolerance. Avoid complexity when possible, but let your application
2323
requirements dictate the architecture.
@@ -50,7 +50,7 @@ if constraints prohibit against another data bearing voting member, an
5050

5151
An :term:`arbiter <arbiter>` does not store a copy of the data and
5252
requires fewer resources. As a result, you may run an arbiter on an
53-
application server or other shared process. With no copy of the data,
53+
application server or other shared resource. With no copy of the data,
5454
it may be possible to place an arbiter into environments that you would
5555
not place other members of the replica set. Consult your security
5656
policies.

source/core/replica-set-delayed-member.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Delayed members:
4343
members. Always prevent applications from seeing and querying
4444
delayed members.
4545

46-
- *do* vote in :term:`elections <election>` for primary, if :rsconf:`members[n].votes` is set to 1.
46+
- *Do* vote in :term:`elections <election>` for primary, if :rsconf:`members[n].votes` is set to 1.
4747

4848
Behavior
4949
~~~~~~~~

source/core/replica-set-hidden-member.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Write Concern
6161

6262
Hidden replica set members can acknowledge write operations issued
6363
with :writeconcern:`w: \<number\> <\<number\>>`. For write operations
64-
isued with :writeconcern:`w : "majority" <"majority">`, however,
64+
issued with :writeconcern:`w : "majority" <"majority">`, however,
6565
hidden members must also be voting members (i.e. :rsconf:`members[n].votes`
6666
greater than ``0``) to acknowledge the ``"majority"`` write operation.
6767
Non-voting replica set members (i.e. :rsconf:`members[n].votes`

source/core/replica-set-members.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ A *replica set* in MongoDB is a group of :binary:`~bin.mongod` processes
1414
that provide redundancy and high availability. The members of a
1515
replica set are:
1616

17-
:ref:`replica-set-primary-member`.
17+
:ref:`replica-set-primary-member`
1818
The primary receives all write operations.
1919

20-
:ref:`replica-set-secondary-members`.
20+
:ref:`replica-set-secondary-members`
2121
Secondaries replicate operations from the primary to maintain an
2222
identical data set. Secondaries may have additional configurations
2323
for special usage profiles. For example, secondaries may be

source/includes/extracts-4.2-changes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ content: |
618618
With flow control enabled, as the lag grows close to the
619619
:parameter:`flowControlTargetLagSeconds`, writes on the primary must obtain
620620
tickets before taking locks to apply writes. By limiting the number of
621-
tickets issued per second, the flow control mechanism attempts to keep the
621+
tickets issued per second, the flow control mechanism attempts to keep
622622
the lag under the target.
623623
---
624624
ref: 4.2-changes-extended-json-v2

source/tutorial/rotate-encryption-key.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ MongoDB provides two options for key rotation. You can rotate out the
2626
binary with a new instance that uses a new key. Or, if you are using a
2727
KMIP server for key management, you can rotate the master key.
2828

29-
Rotate a Member of Replica Set
30-
------------------------------
29+
Rotate a Replica Set Member
30+
---------------------------
3131

3232
For a replica set, to rotate out a member:
3333

0 commit comments

Comments
 (0)