From 6b64fa49f8872e1c86b94bd911d7699391131a07 Mon Sep 17 00:00:00 2001 From: Juarez Bochi Date: Sun, 13 Apr 2014 18:44:58 -0300 Subject: [PATCH] Fix typo Closes #1682 --- src/redis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis.c b/src/redis.c index 6fdc2f68..ef212bf6 100644 --- a/src/redis.c +++ b/src/redis.c @@ -1885,7 +1885,7 @@ void alsoPropagate(struct redisCommand *cmd, int dbid, robj **argv, int argc, } /* It is possible to call the function forceCommandPropagation() inside a - * Redis command implementaiton in order to to force the propagation of a + * Redis command implementation in order to to force the propagation of a * specific command execution into AOF / Replication. */ void forceCommandPropagation(redisClient *c, int flags) { if (flags & REDIS_PROPAGATE_REPL) c->flags |= REDIS_FORCE_REPL;