summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunzhen Wang <sea11274@mail.ustc.edu.cn>2012-11-01 02:14:22 +0800
committerantirez <antirez@gmail.com>2012-11-02 12:12:01 +0100
commit3f006679b1d96581c7ad8ea29d62381cb6a45c29 (patch)
treea615617c6e9769fa95752e5f67697efee13bbcab
parent36f026a3a0049fdf924c709a1e7ff00fea4e70bb (diff)
downloadredis-3f006679b1d96581c7ad8ea29d62381cb6a45c29.tar.gz
fix a typo in redis.h line 595 comment
-rw-r--r--src/redis.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/redis.h b/src/redis.h
index b0bfcae48..64111e65c 100644
--- a/src/redis.h
+++ b/src/redis.h
@@ -465,7 +465,7 @@ typedef struct redisOpArray {
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;