diff options
| author | Josh Soref <2119212+jsoref@users.noreply.github.com> | 2021-12-01 06:20:31 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-01 12:20:31 +0100 | 
| commit | 0e41181d547e2f89ffc503a7afc8b0f3991dd1a8 (patch) | |
| tree | efb25d5bca1351819a0bc0993df442bb1c49d4f8 /plugins/bower | |
| parent | 1c1d74c5ec49e5ab7e2d664e557c61745d1995e6 (diff) | |
| download | zsh-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/bower')
| -rw-r--r-- | plugins/bower/bower.plugin.zsh | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/plugins/bower/bower.plugin.zsh b/plugins/bower/bower.plugin.zsh index 3a40b3af0..c4f71c2ae 100644 --- a/plugins/bower/bower.plugin.zsh +++ b/plugins/bower/bower.plugin.zsh @@ -9,7 +9,7 @@ _bower_installed_packages () {  }  _bower ()  { -    local -a _1st_arguments _no_color _dopts _save_dev _force_lastest _production +    local -a _1st_arguments _no_color _dopts _save_dev _force_latest _production      local expl      typeset -A opt_args @@ -22,7 +22,7 @@ _bower ()      _save_dev=('(--save-dev)--save-dev[Save installed packages into the project"s bower.json devDependencies]') -    _force_lastest=('(--force-latest)--force-latest[Force latest version on conflict]') +    _force_latest=('(--force-latest)--force-latest[Force latest version on conflict]')      _production=('(--production)--production[Do not install project devDependencies]') @@ -54,7 +54,7 @@ _bower ()          _arguments \          $_dopts \          $_save_dev \ -        $_force_lastest \ +        $_force_latest \          $_no_color \          $_production          ;; @@ -62,7 +62,7 @@ _bower ()          _arguments \          $_dopts \          $_no_color \ -        $_force_lastest +        $_force_latest          _bower_installed_packages          compadd "$@" $(echo $bower_package_list)          ;; | 
