From 124493582b306b9fb0eb2067d319f46b8ad36215 Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 4 Oct 2019 11:46:53 +0200 Subject: [PATCH] Modules: RM_Call(): give pointer to documentation. --- src/module.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/module.c b/src/module.c index 0e9c22e54..82ba9f86c 100644 --- a/src/module.c +++ b/src/module.c @@ -2857,7 +2857,10 @@ fmterr: * NULL is returned and errno is set to the following values: * * EINVAL: command non existing, wrong arity, wrong format specifier. - * EPERM: operation in Cluster instance with key in non local slot. */ + * EPERM: operation in Cluster instance with key in non local slot. + * + * This API is documented here: https://redis.io/topics/modules-intro + */ RedisModuleCallReply *RM_Call(RedisModuleCtx *ctx, const char *cmdname, const char *fmt, ...) { struct redisCommand *cmd; client *c = NULL;