summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2017-07-23 12:41:26 +0200
committerantirez <antirez@gmail.com>2017-07-23 12:41:26 +0200
commit5bfdfbe1742f113d3ea1d0dbe857b805da4e3381 (patch)
tree23a69cf5bb1b0a58e52a6daac7ac3776dfb0de32
parenta3778f3b0f0aacbb34ecc77541615a9eda251443 (diff)
downloadredis-5bfdfbe1742f113d3ea1d0dbe857b805da4e3381.tar.gz
Fix typo in unblockClientFromModule() top comment.
-rw-r--r--src/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/module.c b/src/module.c
index cfa5ea4f7..de1a740ec 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.
*