From 7e14a2080151f64a1540e26f00cecd8b9ae9cee3 Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 21 Nov 2011 10:55:52 +0100 Subject: [PATCH] Fixed a comment typo in the command table. --- src/redis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis.c b/src/redis.c index 91e1e10c..a79ec025 100644 --- a/src/redis.c +++ b/src/redis.c @@ -83,7 +83,7 @@ struct redisCommand *commandTable; * p: Pub/Sub related command. * f: force replication of this command, regarless of server.dirty. * s: command not allowed in scripts. - * r: random command. Command is not deterministic, that is, the same command + * R: random command. Command is not deterministic, that is, the same command * with the same arguments, with the same key space, may have different * results. For instance SPOP and RANDOMKEY are two random commands. */ struct redisCommand redisCommandTable[] = { -- 2.45.2