From f538442ad97c4197854e582fb474a1cf266e0f31 Mon Sep 17 00:00:00 2001 From: Daniele Alessandri Date: Mon, 21 Jul 2014 14:17:06 +0200 Subject: [PATCH] Minor phpdocs fixes. [ci skip] --- lib/Predis/Connection/RedisCluster.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Predis/Connection/RedisCluster.php b/lib/Predis/Connection/RedisCluster.php index bc09a887..07cb9ac7 100644 --- a/lib/Predis/Connection/RedisCluster.php +++ b/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.