aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitris Apostolou <dimitris.apostolou@icloud.com>2023-01-04 22:50:35 +0200
committerDimitris Apostolou <dimitris.apostolou@icloud.com>2023-01-04 22:50:35 +0200
commit1d492c7151106a298f5c188369e04c3dce2b1366 (patch)
treeaa4c5c405cf68a4ac14135960aa17ca9b0278a0d /src
parentMerge pull request #975 from zsh-users/fix-typo-in-node (diff)
downloadzsh-completions-1d492c7151106a298f5c188369e04c3dce2b1366.tar
zsh-completions-1d492c7151106a298f5c188369e04c3dce2b1366.tar.gz
zsh-completions-1d492c7151106a298f5c188369e04c3dce2b1366.tar.bz2
zsh-completions-1d492c7151106a298f5c188369e04c3dce2b1366.tar.lz
zsh-completions-1d492c7151106a298f5c188369e04c3dce2b1366.tar.xz
zsh-completions-1d492c7151106a298f5c188369e04c3dce2b1366.tar.zst
zsh-completions-1d492c7151106a298f5c188369e04c3dce2b1366.zip
Fix typos
Diffstat (limited to 'src')
-rw-r--r--src/_conan6
-rw-r--r--src/_inxi2
-rw-r--r--src/_nftables4
-rw-r--r--src/_openssl2
-rw-r--r--src/_pgsql_utils4
-rw-r--r--src/_pm22
-rw-r--r--src/_virtualbox4
7 files changed, 12 insertions, 12 deletions
diff --git a/src/_conan b/src/_conan
index fd4736b..70e63b3 100644
--- a/src/_conan
+++ b/src/_conan
@@ -338,7 +338,7 @@ _conan_create_args() {
'(-v --verify)'{-v,--verify}'[Verify dependencies manifests against stored ones]:verify' \
'(-b --build)'{-b,--build}'[Optional, specify which packages to build from source]:build' \
'(-r --remote)'{-r,--remote}'[Look in the specified remote server]:remote' \
- '(-u --update)'{-u,--update}'[Look in the specified remote server and it will install thoses in the local cache]' \
+ '(-u --update)'{-u,--update}'[Look in the specified remote server and it will install those in the local cache]' \
'(-l --lockfile)'{-l,--lockfile}'[Path to a lockfile]: :_files' \
'--lockfile-out[Filename of the updated lockfile]' \
\*{-e,--env}'[Environment variables that will be set during the package build(host machine)]: :_conan_environment_variables' \
@@ -557,7 +557,7 @@ _conan_workspace_install_args() {
'(- : *)'{-h,--help}'[display help information]' \
'(-b --build)'{-b,--build}'[Optional, specify which packages to build from source]:build' \
'(-r --remote)'{-r,--remote}'[Look in the specified remote server]:remote' \
- '(-u --update)'{-u,--update}'[Will check the remote and it will install thoses in the local cache]' \
+ '(-u --update)'{-u,--update}'[Will check the remote and it will install those in the local cache]' \
'(-l --lockfile)'{-l,--lockfile}'[Path to a lockfile]: :_files' \
'--lockfile-out[Filename of the updated lockfile]' \
\*{-e,--env}'[Environment variables that will be set during the package build(host machine)]: :_conan_environment_variables' \
@@ -943,7 +943,7 @@ _conan_lock_create_args() {
'--base[Lock only recipe versions and revisions]' \
'--lockfile-out[Filename of the updated lockfile]: :_files' \
'(-r --remote)'{-r,--remote}'[Look in the specified remote server]:remote' \
- '(-u --update)'{-u,--update}'[Will check the remote and it will install thoses in the local cache]' \ \*{-e,--env}'[Environment variables that will be set during the package build(host machine)]:env' \
+ '(-u --update)'{-u,--update}'[Will check the remote and it will install those in the local cache]' \ \*{-e,--env}'[Environment variables that will be set during the package build(host machine)]:env' \
\*{'-e\:b','--env\:build'}'[Environment variables that will be set during the package build(build machine)]:env' \
\*{'-e\:h','--env\:host'}'[Environment variables that will be set during the package build(host machine)]:env' \
\*{-o,--options}'[Define options values(host machine)]:option' \
diff --git a/src/_inxi b/src/_inxi
index f29fe8e..8997504 100644
--- a/src/_inxi
+++ b/src/_inxi
@@ -88,7 +88,7 @@ _inxi() {
'(-a --admin)'{-a,--admin}"[Admin extra data options]:admin option:->admin" \
"--alt[Bypass a downloader option]:downloader:_inxi_alt" \
'--bt-tool[Force use of given tool for bluetooth report]' \
- '(--no-dig --dig)--dig[Overrides configration item NO_DIG]' \
+ '(--no-dig --dig)--dig[Overrides configuration item NO_DIG]' \
"--display[Get display data out of X]:\:<integer>: " \
"--dmidecode[Force use of dmidecode]" \
"--downloader[Force inxi to use a specific downloader]:downloader:(curl fetch perl wget)" \
diff --git a/src/_nftables b/src/_nftables
index 8e6cb9b..c891ead 100644
--- a/src/_nftables
+++ b/src/_nftables
@@ -431,7 +431,7 @@ _nft_table(){
_describe -t families "family" families -J "family"
fi
if [[ "$1" =~ "-handle$" ]]; then
- tables=("handle:adress the table by handle")
+ tables=("handle:address the table by handle")
#remove -handle from $1 to be able to complete table names
1="${1/-handle/}"
_describe -t tables "table" tables -V "handle"
@@ -470,7 +470,7 @@ _nft_object(){
local objects=( ${(f)"$(_call_program -p objects nft -a list table $1 $2 2>/dev/null\
| grep ""\\s\*$3"" | sed 's/\s*'"$3"' // ;s/ { # \(.*\)/:(\1)/' )"} )
if $4 ;then
- objects+=( "handle:adress $3 by handle")
+ objects+=( "handle:address $3 by handle")
fi
_describe -t objects "$3" objects
}
diff --git a/src/_openssl b/src/_openssl
index ce33e67..9e93be0 100644
--- a/src/_openssl
+++ b/src/_openssl
@@ -93,7 +93,7 @@ _openssl_asn1parse() {
_openssl_ca() {
# written for openssl 1.0.1k
_arguments -C \
- '-verbose[talk alot while doing things]' \
+ '-verbose[talk a lot while doing things]' \
'-config[a config file]:file:_files' \
'-name[the particular CA definition to use]:section: ' \
'-gencrl[generate a new CRL]' \
diff --git a/src/_pgsql_utils b/src/_pgsql_utils
index 010df6b..b6e8b59 100644
--- a/src/_pgsql_utils
+++ b/src/_pgsql_utils
@@ -400,7 +400,7 @@ _createdb () {
\
--maintenance-db=':alternate maintenance database:_pgsql_databases' \
{-q,--quiet}'[non verbose mode]' \
- --location=':database location (unsupported since PostgrSQL 8.0):_directories' \
+ --location=':database location (unsupported since PostgreSQL 8.0):_directories' \
':PostgreSQL database:' \
':comment:'
}
@@ -415,7 +415,7 @@ _dropdb () {
{-f,--force}'[try to terminate other connections before dropping]' \
{-i,--interactive}'[confirm before drop]' \
{-V,--version}'[output version information, then exit]' \
- --if-exists'[don'\''t treport error if database does'\''t exist]' \
+ --if-exists'[don'\''t report error if database does'\''t exist]' \
--maintenance-db=':alternate maintenance database:_pgsql_databases' \
{-q,--quiet}'[non verbose mode]' \
':PostgreSQL database:_pgsql_databases'
diff --git a/src/_pm2 b/src/_pm2
index a750fb0..8a3b0f2 100644
--- a/src/_pm2
+++ b/src/_pm2
@@ -197,7 +197,7 @@ _pm2() {
_arguments \
'(- *)'{-h,--help}'[output usage information]' \
'--port[specify port to listen to]:port' \
- '--spa[always serving index.html on inexistant sub path]' \
+ '--spa[always serving index.html on inexistent sub path]' \
'--basic-auth-username[set basic auth username]:username' \
'--basic-auth-password[set basic auth password]:password' \
'--monitor[frontend app monitoring]:app' \
diff --git a/src/_virtualbox b/src/_virtualbox
index ee628d4..da08903 100644
--- a/src/_virtualbox
+++ b/src/_virtualbox
@@ -247,8 +247,8 @@ _vboxmanage() {
'--description=[Specifies a text description of the medium]:desc' \
'--move=[Specifies a relative or absolute path to a medium on the host system]: :_files' \
'*--property=[Specifies any required file format dependent parameters in key=value form]:value' \
- '--resize=[Specifes the new capacity of an existing image in MB]:size' \
- '--resizebyte=[Specifes the new capacity of an existing image in bytes]:size' \
+ '--resize=[Specifies the new capacity of an existing image in MB]:size' \
+ '--resizebyte=[Specifies the new capacity of an existing image in bytes]:size' \
'--setlocation=[Specifies the new location of the medium]: :_files' \
'--type=[Specifies the new mode type of an existing image]: :(normal immutable writethrough multi-attach shareable readonly)' \
'1:medium:(disk dvd floppy)' \