From de9c172b50e8c28055dc5241585a0bcb690582b9 Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Sat, 25 Sep 2010 11:07:17 +0200 Subject: [PATCH] Fix comment --- hiredis.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hiredis.c b/hiredis.c index 6dc3e1d..e08c596 100644 --- a/hiredis.c +++ b/hiredis.c @@ -685,8 +685,8 @@ static void* redisCommandWrite(redisContext *c, char *str, size_t len) { } /* Write a formatted command to the output buffer, and, if the context is a - * non-blocking connection, read the reply and return it. When this function - * is called from a blocking context, it will always return NULL. */ + * blocking connection, read the reply and return it. When this function + * is called from a non-blocking context, it will always return NULL. */ void *redisCommand(redisContext *c, const char *format, ...) { va_list ap; sds cmd;