summaryrefslogtreecommitdiff
path: root/plugins/redis-cli
diff options
context:
space:
mode:
authorJosh Soref <2119212+jsoref@users.noreply.github.com>2021-12-01 06:20:31 -0500
committerGitHub <noreply@github.com>2021-12-01 12:20:31 +0100
commit0e41181d547e2f89ffc503a7afc8b0f3991dd1a8 (patch)
treeefb25d5bca1351819a0bc0993df442bb1c49d4f8 /plugins/redis-cli
parent1c1d74c5ec49e5ab7e2d664e557c61745d1995e6 (diff)
downloadzsh-0e41181d547e2f89ffc503a7afc8b0f3991dd1a8.tar.gz
zsh-0e41181d547e2f89ffc503a7afc8b0f3991dd1a8.tar.bz2
zsh-0e41181d547e2f89ffc503a7afc8b0f3991dd1a8.zip
chore: fix spelling errors across the project (#10459)
Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
Diffstat (limited to 'plugins/redis-cli')
-rw-r--r--plugins/redis-cli/_redis-cli10
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'