From 5bfdfbe1742f113d3ea1d0dbe857b805da4e3381 Mon Sep 17 00:00:00 2001 From: antirez Date: Sun, 23 Jul 2017 12:41:26 +0200 Subject: [PATCH] Fix typo in unblockClientFromModule() top comment. --- src/module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module.c b/src/module.c index cfa5ea4f..de1a740e 100644 --- a/src/module.c +++ b/src/module.c @@ -3315,7 +3315,7 @@ void unblockClientFromModule(client *c) { } /* Block a client in the context of a blocking command, returning an handle - * which will be used, later, in order to block the client with a call to + * which will be used, later, in order to unblock the client with a call to * RedisModule_UnblockClient(). The arguments specify callback functions * and a timeout after which the client is unblocked. *