From: Runzhen Wang Date: Wed, 31 Oct 2012 18:14:22 +0000 (+0800) Subject: fix a typo in redis.h line 595 comment X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/c23c657cdd8696c66295962947b85c793c5d7b93 fix a typo in redis.h line 595 comment --- diff --git a/src/redis.h b/src/redis.h index 5e8df146..5b1dc1de 100644 --- a/src/redis.h +++ b/src/redis.h @@ -592,7 +592,7 @@ typedef struct { struct redisServer { /* General */ redisDb *db; - dict *commands; /* Command table hahs table */ + dict *commands; /* Command table hash table */ aeEventLoop *el; unsigned lruclock:22; /* Clock incrementing every minute, for LRU */ unsigned lruclock_padding:10;