From c0f86654142b47e2275fc84eacc08a5e680d7929 Mon Sep 17 00:00:00 2001 From: zhanghailei Date: Thu, 26 Dec 2013 11:28:34 +0800 Subject: FIXED a typo more thank should be more than --- src/dict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dict.c') 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; -- cgit v1.2.1