From 3d9c6a7ce60f58ca087cbd533d9b769a8a455309 Mon Sep 17 00:00:00 2001 From: yanchaozhong Date: Sat, 6 Mar 2021 01:32:11 +0800 Subject: [PATCH] Fix typo in sentinel.c (#8600) --- src/sentinel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sentinel.c b/src/sentinel.c index 90b97940c..266462466 100644 --- a/src/sentinel.c +++ b/src/sentinel.c @@ -1732,7 +1732,7 @@ char *sentinelGetInstanceTypeString(sentinelRedisInstance *ri) { * with CONFIG and SLAVEOF commands renamed for security concerns. In that * case we check the ri->renamed_command table (or if the instance is a slave, * we check the one of the master), and map the command that we should send - * to the set of renamed commads. However, if the command was not renamed, + * to the set of renamed commands. However, if the command was not renamed, * we just return "command" itself. */ char *sentinelInstanceMapCommand(sentinelRedisInstance *ri, char *command) { sds sc = sdsnew(command);