You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zookeeper.apache.org by an...@apache.org on 2019/01/29 14:14:38 UTC

[zookeeper] branch branch-3.5 updated: ZOOKEEPER-3250: typo in doc - zookeeperInternals

This is an automated email from the ASF dual-hosted git repository.

andor pushed a commit to branch branch-3.5
in repository https://gitbox.apache.org/repos/asf/zookeeper.git


The following commit(s) were added to refs/heads/branch-3.5 by this push:
     new 631d1b2  ZOOKEEPER-3250: typo in doc - zookeeperInternals
631d1b2 is described below

commit 631d1b284f0edb1c4f6b0fb221bf2428aec71aaa
Author: lwjli <li...@gmail.com>
AuthorDate: Tue Jan 29 15:14:18 2019 +0100

    ZOOKEEPER-3250: typo in doc - zookeeperInternals
    
    "has long as" -> "as long as"
    
    Author: lwjli <li...@gmail.com>
    
    Reviewers: andor@apache.org
    
    Closes #782 from lwjli/ZOOKEEPER-3250
    
    (cherry picked from commit 6094efde6a043462b464be7d93a541176a220b2f)
    Signed-off-by: Andor Molnar <an...@apache.org>
---
 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.