Skip to content

Commit

Permalink
Merge #131
Browse files Browse the repository at this point in the history
131: fix description of arguments r=Emilgardis a=rursprung

the help text description of the two arguments `--all-features` and `--no-default-features` seem to have been mixed up.

Co-authored-by: Ralph Ursprung <[email protected]>
  • Loading branch information
bors[bot] and rursprung authored Jan 23, 2023
2 parents c5a7aad + a8d0cc7 commit cdb87d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,10 +244,10 @@ To see all the flags the proxied tool accepts run `cargo-{} -- --help`.{}",
.help("Space-separated list of features to activate"),
Arg::with_name("all-features")
.long("all-features")
.help("Do not activate the `default` feature"),
.help("Activate all available features"),
Arg::with_name("no-default-features")
.long("no-default-features")
.help("Activate all available features"),
.help("Do not activate the `default` feature"),
Arg::with_name("target")
.long("target")
.takes_value(true)
Expand Down

0 comments on commit cdb87d8

Please sign in to comment.