From 3c99e429cfa7f0d842c0d26314e2f8218a14ba60 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 8507edc6..e9da98a0 100644 --- a/src/redis.h +++ b/src/redis.h @@ -460,7 +460,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;