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:
bors[bot] 2020-05-23 14:18:23 +00:00 committed by GitHub
commit 8b37d579f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)?;