summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzhanghailei <zhanghailei@youku.com>2013-12-26 11:28:34 +0800
committerantirez <antirez@gmail.com>2014-03-11 11:09:37 +0100
commit7eec42495362950f04fcf832f1145677eae4fd03 (patch)
treed411ad03c5534f9b11a820d8ea62339e61caa140
parent0abe98cb4da1986adac8663e12eba7678ded091b (diff)
downloadredis-7eec42495362950f04fcf832f1145677eae4fd03.tar.gz
FIXED a typo more thank should be more than
-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;