From e4025ea9262a507d6e63021a081e8caaeb38fbd6 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 3 Dec 2013 13:40:41 +0100 Subject: [PATCH] Grammar fix in freeClient(). --- src/networking.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/networking.c b/src/networking.c index 1da5a5a5..ee0e0b93 100644 --- a/src/networking.c +++ b/src/networking.c @@ -698,7 +698,7 @@ void freeClient(redisClient *c) { listDelNode(server.clients,ln); } /* When client was just unblocked because of a blocking operation, - * remove it from the list with unblocked clients. */ + * remove it from the list of unblocked clients. */ if (c->flags & REDIS_UNBLOCKED) { ln = listSearchKey(server.unblocked_clients,c); redisAssert(ln != NULL);