From 6aa9606995bc8ae55f01f7713bc9ed8dc88070f1 Mon Sep 17 00:00:00 2001 From: lsytj0413 <511121939@qq.com> Date: Tue, 29 Aug 2017 14:44:05 +0800 Subject: fix a typo: craeted -> created --- src/db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db.c b/src/db.c index d7233869f..62c8aa131 100644 --- a/src/db.c +++ b/src/db.c @@ -212,7 +212,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 creted via this interface. */ + * All the new keys in the database should be created via this interface. */ void setKey(redisDb *db, robj *key, robj *val) { if (lookupKeyWrite(db,key) == NULL) { dbAdd(db,key,val); -- cgit v1.2.1