Skip to content

Commit

Permalink
FIXED a typo more thank should be more than
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanghailei committed Mar 4, 2014
1 parent 4b9ac6e commit c0f8665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dict.c
Expand Up @@ -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;

Expand Down

0 comments on commit c0f8665

Please sign in to comment.