diff options
author | John Zwinck <jzwinck@gmail.com> | 2011-11-28 16:37:35 -0500 |
---|---|---|
committer | John Zwinck <jzwinck@gmail.com> | 2011-11-28 16:37:35 -0500 |
commit | 347528cf480c73a3d89fdffe2e613da14d54480e (patch) | |
tree | d0132b80844bfb501de917dd8e8c10c5a3862643 | |
parent | 7bc9f5413447af9c920b9aaba85fa39d9496fe1a (diff) |
Fix minor inconsistencies in comment.
-rw-r--r-- | hiredis.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1097,10 +1097,10 @@ int redisBufferRead(redisContext *c) { * * Returns REDIS_OK when the buffer is empty, or (a part of) the buffer was * succesfully written to the socket. When the buffer is empty after the - * write operation, "wdone" is set to 1 (if given). + * write operation, "done" is set to 1 (if given). * * Returns REDIS_ERR if an error occured trying to write and sets - * c->error to hold the appropriate error string. + * c->errstr to hold the appropriate error string. */ int redisBufferWrite(redisContext *c, int *done) { int nwritten; |