diff options
| author | Kevin <kevin.xgr@gmail.com> | 2019-11-20 00:00:00 +0800 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-20 00:00:00 +0800 | 
| commit | e58a9f7d52fd324a9b05b7354256d26b7b79edd5 (patch) | |
| tree | d66d472f171191f45cbeb8bf3e6bf715d858a2e3 | |
| parent | e777b0295eeeda89ee2ecef6ec5cb54889033d94 (diff) | |
| download | hiredict-e58a9f7d52fd324a9b05b7354256d26b7b79edd5.tar.xz | |
Fix typo in dict.c.
| -rw-r--r-- | dict.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -294,7 +294,7 @@ static void dictReleaseIterator(dictIterator *iter) {  /* Expand the hash table if needed */  static int _dictExpandIfNeeded(dict *ht) {      /* If the hash table is empty expand it to the initial size, -     * if the table is "full" dobule its size. */ +     * if the table is "full" double its size. */      if (ht->size == 0)          return dictExpand(ht, DICT_HT_INITIAL_SIZE);      if (ht->used == ht->size) | 
