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

Merge pull request #206 from bluesmoon/patch-1

remove duplicate "take either"
This commit is contained in:
David Trejo
2012-04-23 16:14:18 -07:00

View File

@@ -84,7 +84,7 @@ The performance of `node_redis` improves dramatically with pipelining, which hap
### Sending Commands
Each Redis command is exposed as a function on the `client` object.
All functions take either take either an `args` Array plus optional `callback` Function or
All functions take either an `args` Array plus optional `callback` Function or
a variable number of individual arguments followed by an optional callback.
Here is an example of passing an array of arguments and a callback: