Skip to content

Commit

Permalink
fix(Errors): tones down quoting in some error messages
Browse files Browse the repository at this point in the history
Closes #309
  • Loading branch information
kbknapp committed Oct 13, 2015
1 parent 6bd1bd8 commit 34ce59e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1645,7 +1645,7 @@ impl<'a, 'v, 'ab, 'u, 'h, 'ar> App<'a, 'v, 'ab, 'u, 'h, 'ar>{
.collect(),
Some(matches))
.iter()
.fold(String::new(), |acc, s| acc + &format!("\n\t'{}'",
.fold(String::new(), |acc, s| acc + &format!("\n\t{}",
Format::Error(s))[..]))
},
ClapErrorType::MissingSubcommand => {
Expand Down

0 comments on commit 34ce59e

Please sign in to comment.