Skip to content

Commit 367fe7b

Browse files
committed
Modified the help information of cargo-rustc
1 parent 17855e5 commit 367fe7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/cargo/commands/rustc.rs

Lines changed: 2 additions & 2 deletions
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)