]> git.saurik.com Git - redis.git/commitdiff
Merge pull request #389 from huangz1990/patch-1
authorSalvatore Sanfilippo <antirez@gmail.com>
Tue, 27 Mar 2012 21:00:08 +0000 (14:00 -0700)
committerSalvatore Sanfilippo <antirez@gmail.com>
Tue, 27 Mar 2012 21:00:08 +0000 (14:00 -0700)
fix typo

src/dict.c

index 53e16be0ff22a1090cee4449c8813ce37050cc13..6fd4584eede5041eb69ee257fbf74400b15accdd 100644 (file)
@@ -150,7 +150,7 @@ int _dictInit(dict *d, dictType *type,
 }
 
 /* Resize the table to the minimal size that contains all the elements,
- * but with the invariant of a USER/BUCKETS ratio near to <= 1 */
+ * but with the invariant of a USED/BUCKETS ratio near to <= 1 */
 int dictResize(dict *d)
 {
     int minimal;