From 2d34ec60bfb136c6fb10487307fd1c5dc8f14ba2 Mon Sep 17 00:00:00 2001 From: antirez Date: Sat, 21 Mar 2015 09:19:02 +0100 Subject: [PATCH] Fix typo in beforeSleep() comment. --- src/redis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis.c b/src/redis.c index 918cae1e..15d2c71f 100644 --- a/src/redis.c +++ b/src/redis.c @@ -1258,7 +1258,7 @@ void beforeSleep(struct aeEventLoop *eventLoop) { REDIS_NOTUSED(eventLoop); /* Call the Redis Cluster before sleep function. Note that this function - * may change the state of Redis Cluster (frok ok to fail or vice versa), + * may change the state of Redis Cluster (from ok to fail or vice versa), * so it's a good idea to call it before serving the unblocked clients * later in this function. */ if (server.cluster_enabled) clusterBeforeSleep(); -- GitLab