From 63e41ee19236d88799935e38e517b2a918cacbb3 Mon Sep 17 00:00:00 2001 From: hujie <2844633656@qq.com> Date: Sat, 20 Oct 2018 12:18:56 +0800 Subject: [PATCH] fix typo --- src/db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db.c b/src/db.c index ec92a2b4..536f8af6 100644 --- a/src/db.c +++ b/src/db.c @@ -206,7 +206,7 @@ void dbOverwrite(redisDb *db, robj *key, robj *val) { * 2) clients WATCHing for the destination key notified. * 3) The expire time of the key is reset (the key is made persistent). * - * All the new keys in the database should be craeted via this interface. */ + * All the new keys in the database should be creted via this interface. */ void setKey(redisDb *db, robj *key, robj *val) { if (lookupKeyWrite(db,key) == NULL) { dbAdd(db,key,val);