From 9a3b99cbd1f6690b96729fdcff85e0af6fbd981e Mon Sep 17 00:00:00 2001 From: George Guimares Date: Sun, 16 Jul 2023 17:04:15 -0500 Subject: [PATCH] Replaced comment with excessive warning. The data structures in the comment are not in sync and don't need to be. Referring to function that handles conversion. --- src/commands.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.h b/src/commands.h index 52acacfe0..1eefab481 100644 --- a/src/commands.h +++ b/src/commands.h @@ -19,7 +19,7 @@ typedef enum { #define CMD_ARG_MULTIPLE (1<<1) #define CMD_ARG_MULTIPLE_TOKEN (1<<2) -/* WARNING! This struct must match RedisModuleCommandArg */ +/* Must be compatible with RedisModuleCommandArg. See moduleCopyCommandArgs. */ typedef struct redisCommandArg { const char *name; redisCommandArgType type;