Fix typo in unblockClientFromModule() top comment.

This commit is contained in:
antirez 2017-07-23 12:41:26 +02:00
parent b6c55a8916
commit 10370b207a

View File

@ -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.
*