Commit e4025ea9 authored by antirez's avatar antirez
Browse files

Grammar fix in freeClient().

parent f80cf736
......@@ -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);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment