From 9fab26904fc4591de7df5dbfcd9efe846a050d73 Mon Sep 17 00:00:00 2001 From: Uri Shachar Date: Wed, 21 Apr 2021 13:42:46 +0300 Subject: [PATCH] Fix typo and (hopefully) slightly improve comment readability (#8834) --- src/module.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/module.c b/src/module.c index 05bf3a275..9a3fb95ce 100644 --- a/src/module.c +++ b/src/module.c @@ -2175,8 +2175,8 @@ int RM_GetContextFlags(RedisModuleCtx *ctx) { return flags; } -/* Returns true if some client sent the CLIENT PAUSE command to the server or - * if Redis Cluster is doing a manual failover, and paused tue clients. +/* Returns true if a client sent the CLIENT PAUSE command to the server or + * if Redis Cluster does a manual failover, pausing the clients. * This is needed when we have a master with replicas, and want to write, * without adding further data to the replication channel, that the replicas * replication offset, match the one of the master. When this happens, it is