1
0
mirror of https://github.com/redis/node-redis.git synced 2025-12-25 00:40:59 +03:00

Removed reference to individual args argument

When the second argument of `send_command` is not an array, the following
error is thrown:

    Error: send_command: second argument must be an array

Signed-off-by: David Trejo <david.daniel.trejo@gmail.com>
This commit is contained in:
Jed Schmidt
2012-03-16 22:28:04 +09:00
committed by David Trejo
parent f2e123c42d
commit 192784905b

View File

@@ -515,8 +515,7 @@ Used internally to send commands to Redis. For convenience, nearly all commands
Wiki have been added to the `client` object. However, if I missed any, or if new commands are introduced before
this library is updated, you can use `send_command()` to send arbitrary commands to Redis.
All commands are sent as multi-bulk commands. `args` can either be an Array of arguments, or individual arguments,
or omitted completely.
All commands are sent as multi-bulk commands. `args` can either be an Array of arguments, or omitted.
## client.connected