mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 14:52:33 +00:00
Merge #1939
1939: fixed spacing in to few argument error messages r=pksunkara a=meltinglava Co-authored-by: meltinglava <roi1996@gmail.com>
This commit is contained in:
commit
8b37d579f8
1 changed files with 1 additions and 1 deletions
|
@ -818,7 +818,7 @@ impl Error {
|
|||
c.warning(&arg.to_string())?;
|
||||
c.none("' requires at least ")?;
|
||||
c.warning(&min_vals.to_string())?;
|
||||
c.none("values, but only ")?;
|
||||
c.none(" values, but only ")?;
|
||||
c.warning(&curr_vals.to_string())?;
|
||||
c.none(&format!(" {} provided", verb))?;
|
||||
put_usage(&mut c, usage)?;
|
||||
|
|
Loading…
Reference in a new issue