diff options
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) |