Skip to content

Commit

Permalink
Apply fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ldm0 committed Jan 30, 2021
1 parent 9234bc7 commit ea64a4a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/parse/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,11 @@ impl<'help, 'app> Parser<'help, 'app> {
.iter()
.map(|x| x.to_str().expect(INVALID_UTF8))
.collect();
Err(self.did_you_mean_error(arg.to_str().expect(INVALID_UTF8), matcher, &remaining_args))
Err(self.did_you_mean_error(
arg.to_str().expect(INVALID_UTF8),
matcher,
&remaining_args,
))
}
}

Expand Down

0 comments on commit ea64a4a

Please sign in to comment.