diff --git a/src/parse/parser.rs b/src/parse/parser.rs index 107c01312de..644672826d8 100644 --- a/src/parse/parser.rs +++ b/src/parse/parser.rs @@ -1033,11 +1033,7 @@ 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)) } }