From e58a9f7d52fd324a9b05b7354256d26b7b79edd5 Mon Sep 17 00:00:00 2001 From: Kevin Date: Wed, 20 Nov 2019 00:00:00 +0800 Subject: [PATCH] Fix typo in dict.c. --- dict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dict.c b/dict.c index e17a625..5b349f0 100644 --- a/dict.c +++ b/dict.c @@ -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)