summaryrefslogtreecommitdiff
path: root/src/dict.c
diff options
context:
space:
mode:
authorzhanghailei <zhanghailei@youku.com>2013-12-26 11:28:34 +0800
committerzhanghailei <zhanghailei@youku.com>2014-03-04 11:21:34 +0800
commitc0f86654142b47e2275fc84eacc08a5e680d7929 (patch)
treec557c9f53c447c3f2e68a17034f71519d2435e87 /src/dict.c
parent4b9ac6edd0ce5382e9f2c07e0c68b3230226df72 (diff)
downloadredis-c0f86654142b47e2275fc84eacc08a5e680d7929.tar.gz
FIXED a typo more thank should be more than
Diffstat (limited to 'src/dict.c')
-rw-r--r--src/dict.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dict.c b/src/dict.c
index bcf592e43..10e42eabf 100644
--- a/src/dict.c
+++ b/src/dict.c
@@ -239,7 +239,7 @@ int dictExpand(dict *d, unsigned long size)
/* Performs N steps of incremental rehashing. Returns 1 if there are still
* keys to move from the old to the new hash table, otherwise 0 is returned.
* Note that a rehashing step consists in moving a bucket (that may have more
- * thank one key as we use chaining) from the old to the new hash table. */
+ * than one key as we use chaining) from the old to the new hash table. */
int dictRehash(dict *d, int n) {
if (!dictIsRehashing(d)) return 0;