From ebe228dab262c00261a58449ad2e151b5b33dc59 Mon Sep 17 00:00:00 2001 From: hanael80 Date: Tue, 15 Aug 2017 09:09:40 +0900 Subject: [PATCH] Fix typo --- src/dict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dict.c b/src/dict.c index 69fb3b8f8..e13aeaca3 100644 --- a/src/dict.c +++ b/src/dict.c @@ -327,7 +327,7 @@ int dictReplace(dict *d, void *key, void *val) dictEntry *entry, *existing, auxentry; /* Try to add the element. If the key - * does not exists dictAdd will suceed. */ + * does not exists dictAdd will succeed. */ entry = dictAddRaw(d,key,&existing); if (entry) { dictSetVal(d, entry, val);