From: antirez Date: Mon, 21 Nov 2011 09:55:52 +0000 (+0100) Subject: Fixed a comment typo in the command table. X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/7e14a2080151f64a1540e26f00cecd8b9ae9cee3?ds=sidebyside Fixed a comment typo in the command table. --- 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[] = {