From 770eb112efc53f3469b1def640fd8c7fd9835403 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E4=B8=8A=E8=80=80?= <1210tom@163.com> Date: Sun, 25 Nov 2018 17:16:10 +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 d7233869ff..62c8aa1312 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);