diff options
author | Lucas Larson <91468+LucasLarson@users.noreply.github.com> | 2020-10-21 10:22:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 16:22:32 +0200 |
commit | 80d2e4336b85c070e021571f8724032b204f3c4f (patch) | |
tree | 81622d6e1b9a46c53a5c8768b0ae2407031a3261 /plugins/cargo/_cargo | |
parent | bf5574fc93166d7c1915b9f3ae78aba1959a8403 (diff) | |
download | zsh-80d2e4336b85c070e021571f8724032b204f3c4f.tar.gz zsh-80d2e4336b85c070e021571f8724032b204f3c4f.tar.bz2 zsh-80d2e4336b85c070e021571f8724032b204f3c4f.zip |
Grammar: remove hyphens from predicate adjective “up to date” (#9356)
https://english.stackexchange.com/a/180617
https://web.archive.org/web/20190728053012id_/grammarist.com/usage/up-to-date/#text-60
Diffstat (limited to 'plugins/cargo/_cargo')
-rw-r--r-- | plugins/cargo/_cargo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/cargo/_cargo b/plugins/cargo/_cargo index 12694901e..ffc9fcdc8 100644 --- a/plugins/cargo/_cargo +++ b/plugins/cargo/_cargo @@ -12,8 +12,8 @@ _cargo() { '(-q --quiet)*'{-v,--verbose}'[use verbose output]' '(-q --quiet -v --verbose)'{-q,--quiet}'[no output printed to stdout]' '-Z+[pass unstable (nightly-only) flags to cargo]: :_cargo_unstable_flags' - '--frozen[require that Cargo.lock and cache are up-to-date]' - '--locked[require that Cargo.lock is up-to-date]' + '--frozen[require that Cargo.lock and cache are up to date]' + '--locked[require that Cargo.lock is up to date]' '--color=[specify colorization option]:coloring:(auto always never)' '(- 1 *)'{-h,--help}'[show help message]' ) |