Commit b6f86f38 authored by michael-grunder's avatar michael-grunder
Browse files

Fix README.md

Closes #929
parent 667dbf53
...@@ -261,9 +261,9 @@ a single call to `read(2)`): ...@@ -261,9 +261,9 @@ a single call to `read(2)`):
redisReply *reply; redisReply *reply;
redisAppendCommand(context,"SET foo bar"); redisAppendCommand(context,"SET foo bar");
redisAppendCommand(context,"GET foo"); redisAppendCommand(context,"GET foo");
redisGetReply(context,(void *)&reply); // reply for SET redisGetReply(context,(void**)&reply); // reply for SET
freeReplyObject(reply); freeReplyObject(reply);
redisGetReply(context,(void *)&reply); // reply for GET redisGetReply(context,(void**)&reply); // reply for GET
freeReplyObject(reply); freeReplyObject(reply);
``` ```
This API can also be used to implement a blocking subscriber: This API can also be used to implement a blocking subscriber:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment