Remove unused CLI parameter

pull/25/head
Wilfred Hughes 2021-07-24 16:27:33 +07:00
parent f79c77d421
commit 6d7e155cc6
2 changed files with 5 additions and 6 deletions

@ -1,5 +1,9 @@
## 0.6 (unreleased)
### Command Line Interface
Removed unused `--inline` argument.
## 0.5
### Parsing
@ -43,7 +47,7 @@ avoids nonsensical diffs when toplevel function A is completely
replaced with function B and they only have something trivial in
common (e.g. the `function` keyword).
### Docs
### Command Line Interface
Improved `--help`.

@ -47,11 +47,6 @@ fn main() {
.takes_value(true)
.help("Override terminal width"),
)
.arg(
Arg::with_name("inline")
.long("inline")
.help("Prefer single column output"),
)
.arg(Arg::with_name("positional_args").multiple(true))
.get_matches();