Browse Source

Minor phpdocs fixes.

[ci skip]
Daniele Alessandri 11 years ago
parent
commit
f538442ad9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lib/Predis/Connection/RedisCluster.php

+ 2 - 2
lib/Predis/Connection/RedisCluster.php

@@ -26,7 +26,7 @@ use Predis\Command\RawCommand;
  * Abstraction for a Redis-backed cluster of nodes (Redis >= 3.0.0).
  *
  * This connection backend offers smart support for redis-cluster by handling
- * automatic slots map (re)generation upon -MOVE or -ASK responses returned by
+ * automatic slots map (re)generation upon -MOVED or -ASK responses returned by
  * Redis when redirecting a client to a different node.
  *
  * The cluster can be pre-initialized using only a subset of the actual nodes in
@@ -493,7 +493,7 @@ class RedisCluster implements ClusterConnectionInterface, IteratorAggregate, Cou
     /**
      * Enables automatic fetching of the current slots map from one of the nodes
      * using the CLUSTER NODES command. This option is disabled by default but
-     * asking the current slots map to Redis upon -MOVE responses may reduce
+     * asking the current slots map to Redis upon -MOVED responses may reduce
      * overhead by eliminating the trial-and-error nature of the node guessing
      * procedure, mostly when targeting many keys that would end up in a lot of
      * redirections.