From ce5efb444b203536335ca6dd5d34cb57425b55be Mon Sep 17 00:00:00 2001 From: Gavrie Philipson Date: Tue, 29 Sep 2020 13:10:08 +0300 Subject: [PATCH] Fix typo in module API docs (#7861) --- src/module.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/module.c b/src/module.c index b76b57698..2de7f60ed 100644 --- a/src/module.c +++ b/src/module.c @@ -2938,8 +2938,8 @@ int RM_HashSet(RedisModuleKey *key, int flags, ...) { } /* Get fields from an hash value. This function is called using a variable - * number of arguments, alternating a field name (as a StringRedisModule - * pointer) with a pointer to a StringRedisModule pointer, that is set to the + * number of arguments, alternating a field name (as a RedisModuleString + * pointer) with a pointer to a RedisModuleString pointer, that is set to the * value of the field if the field exists, or NULL if the field does not exist. * At the end of the field/value-ptr pairs, NULL must be specified as last * argument to signal the end of the arguments in the variadic function.