From f4dc736ccadedefe156a3b9c278e06cb2c55f0a1 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 15 Feb 2018 21:33:06 +0100 Subject: [PATCH] Fix typo in notifyKeyspaceEvent() comment. --- src/notify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notify.c b/src/notify.c index 9bbeb1423..f98cb9204 100644 --- a/src/notify.c +++ b/src/notify.c @@ -117,7 +117,7 @@ void notifyKeyspaceEvent(int type, char *event, robj *key, int dbid) { decrRefCount(chanobj); } - /* __keyevente@__: notifications. */ + /* __keyevent@__: notifications. */ if (server.notify_keyspace_events & NOTIFY_KEYEVENT) { chan = sdsnewlen("__keyevent@",11); if (len == -1) len = ll2string(buf,sizeof(buf),dbid);