Skip to content

Commit 3899434

Browse files
committed
Auto merge of #7892 - KaneGreen:rustc-about-text, r=ehuss
Modified the help information of cargo-rustc ### Motivation The original help information for `cargo build` is > Compile a local package and all of its dependencies And the original help information for `cargo rustc` is > Compile a package and all of its dependencies These messages are **too similar** to make it difficult to distinguish the differences between the two commands. According to the [cargo book](https://doc.rust-lang.org/cargo/commands/cargo-rustc.html), `cargo rustc` is characterized by > pass extra options to the compiler I think this should be written into the help text of the command. In addition, the `<args> ...` parameters of `cargo rustc` lack help text and need to be added. ### Modification See the commit files. ### Problems Maybe some words in my modification are not accurate enough. If you have better wording, welcome to point out. Thanks.
2 parents c8019b1 + 367fe7b commit 3899434

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/cargo/commands/rustc.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ use cargo::ops;
55
pub fn cli() -> App {
66
subcommand("rustc")
77
.setting(AppSettings::TrailingVarArg)
8-
.about("Compile a package and all of its dependencies")
8+
.about("Compile a package, and pass extra options to the compiler")
99
.arg(opt("quiet", "No output printed to stdout").short("q"))
10-
.arg(Arg::with_name("args").multiple(true))
10+
.arg(Arg::with_name("args").multiple(true).help("Rustc flags"))
1111
.arg_package("Package to build")
1212
.arg_jobs()
1313
.arg_targets_all(

0 commit comments

Comments
 (0)