From 98be450f1dd6c586fd83f1f9b5bec6484e188721 Mon Sep 17 00:00:00 2001 From: jonathan keinan Date: Tue, 4 Feb 2025 18:41:27 +0200 Subject: [PATCH] * fix typo --- src/module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module.c b/src/module.c index 897ed74089..08389035d6 100644 --- a/src/module.c +++ b/src/module.c @@ -13294,7 +13294,7 @@ int RM_RegisterNumericConfig(RedisModuleCtx *ctx, const char *name, long long de * This will return REDISMODULE_ERR if it is called: * 1. outside RedisModule_OnLoad * 2. more than once - * 3. after the LoadConfis call */ + * 3. after the RedisModule_LoadConfigs call */ int RM_LoadDefaultConfigs(RedisModuleCtx *ctx) { if (!ctx || !ctx->module || !ctx->module->onload || ctx->module->configs_initialized) { return REDISMODULE_ERR;