diff --git a/src/main/java/org/redisson/core/RCountDownLatch.java b/src/main/java/org/redisson/core/RCountDownLatch.java
index 05411c54c..6ecbfd4bb 100644
--- a/src/main/java/org/redisson/core/RCountDownLatch.java
+++ b/src/main/java/org/redisson/core/RCountDownLatch.java
@@ -123,9 +123,9 @@ public interface RCountDownLatch extends RObject {
/**
* Sets new count value only if previous count already has reached zero
- * or not been setted at all.
+ * or is not set at all.
*
- * @param count the number of times {@link #countDown} must be invoked
+ * @param count - number of times {@link #countDown} must be invoked
* before threads can pass through {@link #await}
* @return true
if new count setted
* false
if previous count has not reached zero