diff options
author | Michael Grunder <michael.grunder@gmail.com> | 2019-11-19 11:11:46 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-19 11:11:46 -0800 |
commit | 5d0568d9ae49363ad21b512c52025e45bbf8d02e (patch) | |
tree | d66d472f171191f45cbeb8bf3e6bf715d858a2e3 /dict.c | |
parent | e777b0295eeeda89ee2ecef6ec5cb54889033d94 (diff) | |
parent | e58a9f7d52fd324a9b05b7354256d26b7b79edd5 (diff) |
Merge pull request #731 from Kevin-Xi/patch-1
Fix typo in dict.c.
Diffstat (limited to '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) |