Skip to content

Commit

Permalink
Modified the help information of cargo-rustc
Browse files Browse the repository at this point in the history
  • Loading branch information
KaneGreen committed Feb 17, 2020
1 parent 17855e5 commit 367fe7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/cargo/commands/rustc.rs
Expand Up @@ -5,9 +5,9 @@ use cargo::ops;
pub fn cli() -> App {
subcommand("rustc")
.setting(AppSettings::TrailingVarArg)
.about("Compile a package and all of its dependencies")
.about("Compile a package, and pass extra options to the compiler")
.arg(opt("quiet", "No output printed to stdout").short("q"))
.arg(Arg::with_name("args").multiple(true))
.arg(Arg::with_name("args").multiple(true).help("Rustc flags"))
.arg_package("Package to build")
.arg_jobs()
.arg_targets_all(
Expand Down

0 comments on commit 367fe7b

Please sign in to comment.