mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
chore(Completion Error): changes error message to reflect not only BASH is supported
This commit is contained in:
parent
ccfc5ed6c3
commit
1d6f8fd7de
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ impl<'a, 'b> Parser<'a, 'b>
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut file = match File::create(out_dir.join(file_name)) {
|
let mut file = match File::create(out_dir.join(file_name)) {
|
||||||
Err(why) => panic!("couldn't create bash completion file: {}",
|
Err(why) => panic!("couldn't create completion file: {}",
|
||||||
why.description()),
|
why.description()),
|
||||||
Ok(file) => file,
|
Ok(file) => file,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue