This is an automated email from the ASF dual-hosted git repository.
andor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/master by this push:
new 6094efd ZOOKEEPER-3250: typo in doc - zookeeperInternals
6094efd is described below
commit 6094efde6a043462b464be7d93a541176a220b2f
Author: lwjli <[email protected]>
AuthorDate: Tue Jan 29 15:14:18 2019 +0100
ZOOKEEPER-3250: typo in doc - zookeeperInternals
"has long as" -> "as long as"
Author: lwjli <[email protected]>
Reviewers: [email protected]
Closes #782 from lwjli/ZOOKEEPER-3250
---
zookeeper-docs/src/main/resources/markdown/zookeeperInternals.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/zookeeper-docs/src/main/resources/markdown/zookeeperInternals.md
b/zookeeper-docs/src/main/resources/markdown/zookeeperInternals.md
index 13cde10..1ae343d 100644
--- a/zookeeper-docs/src/main/resources/markdown/zookeeperInternals.md
+++ b/zookeeper-docs/src/main/resources/markdown/zookeeperInternals.md
@@ -157,7 +157,7 @@ Leader activation includes leader election. We currently
have two leader electio
algorithms in ZooKeeper: LeaderElection and FastLeaderElection
(AuthFastLeaderElection
is a variant of FastLeaderElection that uses UDP and allows servers to perform
a simple
form of authentication to avoid IP spoofing). ZooKeeper messaging doesn't care
about the
-exact method of electing a leader has long as the following holds:
+exact method of electing a leader as long as the following holds:
* The leader has seen the highest zxid of all the followers.
* A quorum of servers have committed to following the leader.