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);