We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1b08dd commit 859657fCopy full SHA for 859657f
src/librustc_driver/lib.rs
@@ -777,13 +777,13 @@ fn usage(verbose: bool, include_unstable_options: bool) {
777
} else {
778
"\n --help -v Print the full set of options rustc accepts"
779
};
780
- println!("{}\nAdditional help:
+ println!("{options}\nAdditional help:
781
-C help Print codegen options
782
-W help \
783
- Print 'lint' options and default settings{}{}\n",
784
- options.usage(message),
785
- nightly_help,
786
- verbose_help);
+ Print 'lint' options and default settings{nightly}{verbose}\n",
+ options = options.usage(message),
+ nightly = nightly_help,
+ verbose = verbose_help);
787
}
788
789
fn print_wall_help() {
0 commit comments