We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0e3258 commit a0dbeeaCopy full SHA for a0dbeea
src/librustc_driver/lib.rs
@@ -783,14 +783,14 @@ fn usage(verbose: bool, include_unstable_options: bool) {
783
} else {
784
""
785
};
786
- println!("{}{}\nAdditional help:
+ println!("{options}{at_path}\nAdditional help:
787
-C help Print codegen options
788
-W help \
789
- Print 'lint' options and default settings{}{}\n",
790
- options.usage(message),
791
- at_path,
792
- nightly_help,
793
- verbose_help);
+ Print 'lint' options and default settings{nightly}{verbose}\n",
+ options = options.usage(message),
+ at_path = at_path,
+ nightly = nightly_help,
+ verbose = verbose_help);
794
}
795
796
fn print_wall_help() {
0 commit comments