Skip to content

Commit

Permalink
Update after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
intgr committed Jul 31, 2020
1 parent 89bda82 commit dae4900
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clap_generate/src/generators/shells/zsh.rs
Original file line number Diff line number Diff line change
Expand Up @@ -427,11 +427,11 @@ fn write_opts_of(p: &App) -> String {
if let Some(short_aliases) = o.get_visible_short_aliases() {
for alias in short_aliases {
let s = format!(
"'{conflicts}{multiple}-{arg}+[{help}]{possible_values}' \\",
"'{conflicts}{multiple}-{arg}+[{help}]{value_completion}' \\",
conflicts = conflicts,
multiple = multiple,
arg = alias,
possible_values = pv,
value_completion = vc,
help = help
);

Expand Down

0 comments on commit dae4900

Please sign in to comment.