summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamon Snir <r@mon.co.il>2016-04-28 13:30:57 +0300
committerantirez <antirez@gmail.com>2016-05-10 06:40:10 +0200
commit909a707b720335eff2512f7ddc094144746c4817 (patch)
tree9afdf005dd0c64f7b1f6001a89cf46b3511152d2
parenta00e8725604ffdc9efed550dc64bd6ea47d684e8 (diff)
downloadredis-909a707b720335eff2512f7ddc094144746c4817.tar.gz
vector of strings is implemented now
-rw-r--r--src/modules/API.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/API.md b/src/modules/API.md
index cb2ca2279..2918edf4a 100644
--- a/src/modules/API.md
+++ b/src/modules/API.md
@@ -261,7 +261,7 @@ This is the full list of format specifiers:
* **b** -- C buffer, two arguments needed: C string pointer and `size_t` length.
* **s** -- RedisModuleString as received in `argv` or by other Redis module APIs returning a RedisModuleString object.
* **l** -- Long long integer.
-* **v** -- NOT YET IMPLEMENTED: Array of RedisModuleString objects.
+* **v** -- Array of RedisModuleString objects.
* **!** -- This modifier just tells the function to replicate the command to slaves and AOF. It is ignored from the point of view of arguments parsing.
The function returns a `RedisModuleCallReply` object on success, on