mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
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
This commit is contained in:
parent
bf5574fc93
commit
80d2e4336b
2 changed files with 3 additions and 3 deletions
|
@ -12,8 +12,8 @@ _cargo() {
|
||||||
'(-q --quiet)*'{-v,--verbose}'[use verbose output]'
|
'(-q --quiet)*'{-v,--verbose}'[use verbose output]'
|
||||||
'(-q --quiet -v --verbose)'{-q,--quiet}'[no output printed to stdout]'
|
'(-q --quiet -v --verbose)'{-q,--quiet}'[no output printed to stdout]'
|
||||||
'-Z+[pass unstable (nightly-only) flags to cargo]: :_cargo_unstable_flags'
|
'-Z+[pass unstable (nightly-only) flags to cargo]: :_cargo_unstable_flags'
|
||||||
'--frozen[require that Cargo.lock and cache are up-to-date]'
|
'--frozen[require that Cargo.lock and cache are up to date]'
|
||||||
'--locked[require that Cargo.lock is up-to-date]'
|
'--locked[require that Cargo.lock is up to date]'
|
||||||
'--color=[specify colorization option]:coloring:(auto always never)'
|
'--color=[specify colorization option]:coloring:(auto always never)'
|
||||||
'(- 1 *)'{-h,--help}'[show help message]'
|
'(- 1 *)'{-h,--help}'[show help message]'
|
||||||
)
|
)
|
||||||
|
|
|
@ -41,7 +41,7 @@ __go_tool_complete() {
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
build_flags=(
|
build_flags=(
|
||||||
'-a[force reinstallation of packages that are already up-to-date]'
|
'-a[force reinstallation of packages that are already up to date]'
|
||||||
'-n[print the commands but do not run them]'
|
'-n[print the commands but do not run them]'
|
||||||
'-p[number of parallel builds]:number'
|
'-p[number of parallel builds]:number'
|
||||||
'-race[enable data race detection]'
|
'-race[enable data race detection]'
|
||||||
|
|
Loading…
Reference in a new issue