Skip to content

Commit

Permalink
fix(usage): remove unneeded space
Browse files Browse the repository at this point in the history
  • Loading branch information
kbknapp committed Apr 10, 2015
1 parent ba817b9 commit 5137278
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.rs
Expand Up @@ -464,7 +464,7 @@ impl<'a, 'v, 'ab, 'u, 'ar> App<'a, 'v, 'ab, 'u, 'ar>{
} else if req_opts.is_empty() {
"[OPTIONS]".to_owned()
} else {
format!("{}", &req_opts[..])
req_opts
});
}
if pos {
Expand All @@ -474,7 +474,7 @@ impl<'a, 'v, 'ab, 'u, 'ar> App<'a, 'v, 'ab, 'u, 'ar>{
} else if req_pos.is_empty() {
"[POSITIONAL]".to_owned()
} else {
format!("{}", &req_pos[..])
req_pos
} );
}
if subcmds {
Expand Down

0 comments on commit 5137278

Please sign in to comment.