diff --git a/src/main/java/org/redisson/core/RBatch.java b/src/main/java/org/redisson/core/RBatch.java
index 2d2d6aa67..27b20e7e9 100644
--- a/src/main/java/org/redisson/core/RBatch.java
+++ b/src/main/java/org/redisson/core/RBatch.java
@@ -24,10 +24,12 @@ import io.netty.util.concurrent.Future;
 
 /**
  * Interface for using pipeline feature.
- *
+ * <p/>
  * All method invocations on objects
  * from this interface are batched to separate queue and could be executed later
  * with <code>execute()</code> or <code>executeAsync()</code> methods.
+ * <p/>
+ * Please be ware, atomicity <b>is not</b> guaranteed.
  *
  *
  * @author Nikita Koksharov