From d9462d27801b337c482d8cde741081a29fcc14fb Mon Sep 17 00:00:00 2001 From: xuxiang Date: Wed, 20 Nov 2013 14:14:27 +0800 Subject: [PATCH] Fix typo in redis.h Closes #1386 --- src/redis.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis.h b/src/redis.h index 7ad03dc9..a1ae0f2b 100644 --- a/src/redis.h +++ b/src/redis.h @@ -499,7 +499,7 @@ typedef struct readyList { } readyList; /* With multiplexing we need to take per-client state. - * Clients are taken in a liked list. */ + * Clients are taken in a linked list. */ typedef struct redisClient { uint64_t id; /* Client incremental unique ID. */ int fd;