diff --git a/src/dict.c b/src/dict.c index bcf592e43d6cd9ed5ac2fb632efd5357b169e9f8..10e42eabf89a483afe9b9ff7e46240be38432705 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;