From 799208de85abfc686f56acd72f8cc7b7f4cd6e23 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 6 Oct 2016 17:10:47 +0200 Subject: [PATCH] Fix name of mispelled function. --- src/server.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server.h b/src/server.h index 21e32824..b9c46b81 100644 --- a/src/server.h +++ b/src/server.h @@ -517,7 +517,7 @@ typedef struct RedisModuleIO { rio *rio; /* Rio stream. */ moduleType *type; /* Module type doing the operation. */ int error; /* True if error condition happened. */ - struct RedisModuleCtx *ctx; /* Optional context, via GetIOContext() call. */ + struct RedisModuleCtx *ctx; /* Optional context, see RM_GetContextFromIO()*/ } RedisModuleIO; #define moduleInitIOContext(iovar,mtype,rioptr) do { \