Grammar fix in freeClient().

This commit is contained in:
antirez 2013-12-03 13:40:41 +01:00
parent f80cf7363a
commit e4025ea926

View File

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