summaryrefslogtreecommitdiff
path: root/src/redis.h
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2012-11-02 04:10:47 -0700
committerSalvatore Sanfilippo <antirez@gmail.com>2012-11-02 04:10:47 -0700
commit06851a93de54c4d9bb0a6c52234ef5bb3db07d96 (patch)
treec70a239dce4b123a9325826062e88a5c59460173 /src/redis.h
parent05d8e2c938e3b06efe3573deb97adb767550becc (diff)
parentc23c657cdd8696c66295962947b85c793c5d7b93 (diff)
downloadredis-06851a93de54c4d9bb0a6c52234ef5bb3db07d96.tar.gz
Merge pull request #741 from Run/typo
fix a typo in redis.h line 595 comment
Diffstat (limited to 'src/redis.h')
-rw-r--r--src/redis.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/redis.h b/src/redis.h
index 811afaa19..9f6c04064 100644
--- a/src/redis.h
+++ b/src/redis.h
@@ -593,7 +593,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;