This is an automated email from the ASF dual-hosted git repository.
kezhuw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/curator.git
The following commit(s) were added to refs/heads/master by this push:
new 6a27ff0a CURATOR-717: Fix typo in CuratorCache Javadoc (#507)
6a27ff0a is described below
commit 6a27ff0a17df9ecee994ed06acfc2de6cbde58cf
Author: Philipp Dolif <[email protected]>
AuthorDate: Fri Oct 18 17:37:14 2024 +0200
CURATOR-717: Fix typo in CuratorCache Javadoc (#507)
---
.../java/org/apache/curator/framework/recipes/cache/CuratorCache.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/curator-recipes/src/main/java/org/apache/curator/framework/recipes/cache/CuratorCache.java
b/curator-recipes/src/main/java/org/apache/curator/framework/recipes/cache/CuratorCache.java
index 0eeff760..e2be064d 100644
---
a/curator-recipes/src/main/java/org/apache/curator/framework/recipes/cache/CuratorCache.java
+++
b/curator-recipes/src/main/java/org/apache/curator/framework/recipes/cache/CuratorCache.java
@@ -39,7 +39,7 @@ import org.apache.curator.framework.listen.Listenable;
* <ul>
* <li>Pre-network partition the cache contains "/foo" and
"/foo/bar"</li>
* <li>A network partition occurs and your Curator client loses
connection to the server</li>
- * <li>Image another client that isn't partitioned, deletes "/foo/bar"
and then a third client re-creates "/foo/bar"</li>
+ * <li>Imagine another client that isn't partitioned, deletes
"/foo/bar" and then a third client re-creates "/foo/bar"</li>
* <li>Your client's partition is fixed. The cache will only see
<em>one</em> change - the third client's re-create</li>
* </ul>
*