Skip to content

Commit

Permalink
chore(Completion Error): changes error message to reflect not only BA…
Browse files Browse the repository at this point in the history
…SH is supported
  • Loading branch information
kbknapp committed Nov 1, 2016
1 parent ccfc5ed commit 1d6f8fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ impl<'a, 'b> Parser<'a, 'b>
};

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()),
Ok(file) => file,
};
Expand Down

0 comments on commit 1d6f8fd

Please sign in to comment.