diff options
author | Itamar Haber <itamar@redislabs.com> | 2017-12-05 18:14:59 +0200 |
---|---|---|
committer | Itamar Haber <itamar@redislabs.com> | 2017-12-05 18:14:59 +0200 |
commit | 8b51121998bd5b0f3f4992548ad5f4a929c2a9d7 (patch) | |
tree | 4b48521968561f0f3e02a1da5923bbb1f8702567 /src/cluster.c | |
parent | 51eb6cb39513188001bd24e693868451ae267340 (diff) | |
parent | 62a4b817c6e83eedf96a451f45dd943099258fd0 (diff) | |
download | redis-8b51121998bd5b0f3f4992548ad5f4a929c2a9d7.tar.gz |
Merge remote-tracking branch 'upstream/unstable' into help_subcommands
Diffstat (limited to 'src/cluster.c')
-rw-r--r-- | src/cluster.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cluster.c b/src/cluster.c index 2c9866d0f..4e695822b 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -653,7 +653,7 @@ unsigned int keyHashSlot(char *key, int keylen) { for (e = s+1; e < keylen; e++) if (key[e] == '}') break; - /* No '}' or nothing betweeen {} ? Hash the whole key. */ + /* No '}' or nothing between {} ? Hash the whole key. */ if (e == keylen || e == s+1) return crc16(key,keylen) & 0x3FFF; /* If we are here there is both a { and a } on its right. Hash |