From bf544ce81c55f6ae64470efeec04f368dec9ac3d Mon Sep 17 00:00:00 2001 From: Elnatan Date: Mon, 14 Feb 2011 09:09:49 -0500 Subject: [PATCH] Typo fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d908da06b..5a77cd381 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ was received: * **`REDIS_REPLY_ARRAY`**: * A multi bulk reply. The number of elements in the multi bulk reply is stored in `reply->elements`. Every element in the multi bulk reply is a `redisReply` object as well - and can be accessed via `reply->elements[..index..]`. + and can be accessed via `reply->element[..index..]`. Redis may reply with nested arrays but this is fully supported. Replies should be freed using the `freeReplyObject()` function.