]> git.saurik.com Git - redis.git/commitdiff
Fixed typo in comment
authorantirez <antirez@gmail.com>
Tue, 24 May 2011 08:35:48 +0000 (10:35 +0200)
committerantirez <antirez@gmail.com>
Tue, 24 May 2011 08:35:58 +0000 (10:35 +0200)
src/t_zset.c

index 19aac3d50a3792cfa0bb4d0ce3839039466bde61..a5dc27c7685e7677f0f138d9284ddc41b25a68ab 100644 (file)
@@ -1521,7 +1521,7 @@ void zunionInterGenericCommand(redisClient *c, robj *dstkey, int op) {
 
                 score = src[0].weight * zval.score;
                 for (j = 1; j < setnum; j++) {
-                    /* It is not safe to access the hash we zset we are
+                    /* It is not safe to access the zset we are
                      * iterating, so explicitly check for equal object. */
                     if (src[j].subject == src[0].subject) {
                         value = zval.score*src[j].weight;
@@ -1566,7 +1566,7 @@ void zunionInterGenericCommand(redisClient *c, robj *dstkey, int op) {
                 /* Because the inputs are sorted by size, it's only possible
                  * for sets at larger indices to hold this element. */
                 for (j = (i+1); j < setnum; j++) {
-                    /* It is not safe to access the hash we zset we are
+                    /* It is not safe to access the zset we are
                      * iterating, so explicitly check for equal object. */
                     if(src[j].subject == src[i].subject) {
                         value = zval.score*src[j].weight;