Skip to content

Commit

Permalink
clarify --help
Browse files Browse the repository at this point in the history
  • Loading branch information
Sh1Yo committed Jul 11, 2021
1 parent 6de5a51 commit 5047b5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ FLAGS:
--force Ignore 'binary data detected', 'the page is too huge', 'param_template lacks
variables' error messages
-h, --help Prints help information
--http2 Use http/2 instead of http/1.1
--http2 Prefer http/2 over http/1.1
--insecure Use http instead of https when the request file is used
--is-json If the output is valid json and the content type does not contain 'json'
keyword - specify this argument for a more accurate search
Expand Down
2 changes: 1 addition & 1 deletion src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ pub fn get_config() -> (Config, usize) {
.arg(
Arg::with_name("http2")
.long("http2")
.help("Use http/2 instead of http/1.1")
.help("Prefer http/2 over http/1.1")
);

let args = app.clone().get_matches();
Expand Down

0 comments on commit 5047b5c

Please sign in to comment.