Skip to content

Commit cdb87d8

Browse files
bors[bot]rursprung
andauthored
Merge #131
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]>
2 parents c5a7aad + a8d0cc7 commit cdb87d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,10 @@ To see all the flags the proxied tool accepts run `cargo-{} -- --help`.{}",
244244
.help("Space-separated list of features to activate"),
245245
Arg::with_name("all-features")
246246
.long("all-features")
247-
.help("Do not activate the `default` feature"),
247+
.help("Activate all available features"),
248248
Arg::with_name("no-default-features")
249249
.long("no-default-features")
250-
.help("Activate all available features"),
250+
.help("Do not activate the `default` feature"),
251251
Arg::with_name("target")
252252
.long("target")
253253
.takes_value(true)

0 commit comments

Comments
 (0)