mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 06:12:40 +00:00
Removed extra tab when printing help
This commit is contained in:
parent
10d7908f53
commit
de64e3d79f
1 changed files with 1 additions and 1 deletions
|
@ -418,7 +418,7 @@ impl<'a, 'v, 'ab, 'u> App<'a, 'v, 'ab, 'u>{
|
|||
println!("");
|
||||
println!("POSITIONAL ARGUMENTS:");
|
||||
for v in self.positionals_idx.values() {
|
||||
println!("\t{}\t\t\t{}", v.name,
|
||||
println!("\t{}\t\t{}", v.name,
|
||||
if let Some(h) = v.help {h} else {" "} );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue