You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zookeeper.apache.org by rg...@apache.org on 2015/05/29 21:48:23 UTC

svn commit: r1682539 - in /zookeeper/trunk: CHANGES.txt src/java/main/org/apache/zookeeper/Watcher.java

Author: rgs
Date: Fri May 29 19:48:23 2015
New Revision: 1682539

URL: http://svn.apache.org/r1682539
Log:
ZOOKEEPER-2179: Typo in Watcher.java (Archana T via rgs)

Modified:
    zookeeper/trunk/CHANGES.txt
    zookeeper/trunk/src/java/main/org/apache/zookeeper/Watcher.java

Modified: zookeeper/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/zookeeper/trunk/CHANGES.txt?rev=1682539&r1=1682538&r2=1682539&view=diff
==============================================================================
--- zookeeper/trunk/CHANGES.txt (original)
+++ zookeeper/trunk/CHANGES.txt Fri May 29 19:48:23 2015
@@ -104,6 +104,8 @@ BUGFIXES:
   ZOOKEEPER-2156: If JAVA_HOME is not set zk startup and fetching status command execution
   result misleads user (J.Andreina via rakeshr)
 
+  ZOOKEEPER-2179: Typo in Watcher.java (Archana T via rgs)
+
 IMPROVEMENTS:
   ZOOKEEPER-1660 Documentation for Dynamic Reconfiguration (Reed Wanderman-Milne via shralex)  
 

Modified: zookeeper/trunk/src/java/main/org/apache/zookeeper/Watcher.java
URL: http://svn.apache.org/viewvc/zookeeper/trunk/src/java/main/org/apache/zookeeper/Watcher.java?rev=1682539&r1=1682538&r2=1682539&view=diff
==============================================================================
--- zookeeper/trunk/src/java/main/org/apache/zookeeper/Watcher.java (original)
+++ zookeeper/trunk/src/java/main/org/apache/zookeeper/Watcher.java Fri May 29 19:48:23 2015
@@ -20,7 +20,7 @@ package org.apache.zookeeper;
 
 /**
  * This interface specifies the public interface an event handler class must
- * implement. A ZooKeeper client will get various events from the ZooKeepr
+ * implement. A ZooKeeper client will get various events from the ZooKeeper
  * server it connects to. An application using such a client handles these
  * events by registering a callback object with the client. The callback object
  * is expected to be an instance of a class that implements Watcher interface.