diff options
Diffstat (limited to 'plugins/redis-cli')
| -rw-r--r-- | plugins/redis-cli/_redis-cli | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/plugins/redis-cli/_redis-cli b/plugins/redis-cli/_redis-cli index 1569f2916..f93624565 100644 --- a/plugins/redis-cli/_redis-cli +++ b/plugins/redis-cli/_redis-cli @@ -8,7 +8,7 @@ _1st_arguments=(    'append:append a value to a key'    'auth:authenticate to the server'    'bgrewriteeaof:asynchronously rewrite the append-only file' -  'bgsave:asynchornously save the dataset to disk' +  'bgsave:asynchronously save the dataset to disk'    'blpop:remove and get the first element in a list, or block until one is available'    'brpop:remove and get the last element in a list, or block until one is available'    'brpoplpush:pop a value from a list, push it to another list and return it; or block until one is available' @@ -17,9 +17,9 @@ _1st_arguments=(    # 'config resetstat: reset the stats returned by INFO'    'dbsize:return the number of keys in the selected database'    # 'debug object:get debugging information about a key' -  # 'debug setgfault:make the server crash' +  # 'debug segfault:make the server crash'    'decr:decrement the integer value of a key by one' -  'decrby:decrement the integet value of a key by the given number' +  'decrby:decrement the integer value of a key by the given number'    'del:delete a key'    'discard:discard all commands issued after MULTI'    'echo:echo the given string' @@ -63,7 +63,7 @@ _1st_arguments=(    'mget:get the values of all the given keys'    'monitor:listen for all requests received by the server in real time'    'move:move a key to another database' -  'mset:set multiple keys to muliple values' +  'mset:set multiple keys to multiple values'    'msetnx:set multiple keys tom ultiple values, only if none of the keys exist'    'multi:mark the start of a transaction block'    'object:inspect the internals of Redis objects' @@ -122,7 +122,7 @@ _1st_arguments=(    'zrem:remove a member from a sorted set'    'zremrangebyrank:remove all members in a sorted set within the given indexes'    'zremrangebyscore:remove all members in a sorted set within the given scores' -  'zrevrange:return a range of membrs in a sorted set, by index, with scores ordered from high to low' +  'zrevrange:return a range of members in a sorted set, by index, with scores ordered from high to low'    'zrevrangebyscore:return a range of members in a sorted set, by score, with scores ordered from high to low'    'zrevrank:determine the index of a member in a sorted set, with scores ordered from high to low'    'zscore:get the score associated with the given member in a sorted set' | 
