@@ -1155,7 +1155,7 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
1155
1155
passes: Vec <String > = ( Vec :: new( ) , parse_list, [ TRACKED ] ,
1156
1156
"a list of extra LLVM passes to run (space separated)" ) ,
1157
1157
llvm_args: Vec <String > = ( Vec :: new( ) , parse_list, [ TRACKED ] ,
1158
- "a list of arguments to pass to llvm (space separated)" ) ,
1158
+ "a list of arguments to pass to LLVM (space separated)" ) ,
1159
1159
save_temps: bool = ( false , parse_bool, [ UNTRACKED ] ,
1160
1160
"save all temporary output files during compilation" ) ,
1161
1161
rpath: bool = ( false , parse_bool, [ UNTRACKED ] ,
@@ -1208,7 +1208,7 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
1208
1208
default_linker_libraries: Option <bool > = ( None , parse_opt_bool, [ UNTRACKED ] ,
1209
1209
"allow the linker to link its default libraries" ) ,
1210
1210
linker_flavor: Option <LinkerFlavor > = ( None , parse_linker_flavor, [ UNTRACKED ] ,
1211
- "Linker flavor" ) ,
1211
+ "linker flavor" ) ,
1212
1212
linker_plugin_lto: LinkerPluginLto = ( LinkerPluginLto :: Disabled ,
1213
1213
parse_linker_plugin_lto, [ TRACKED ] ,
1214
1214
"generate build artifacts that are compatible with linker-based LTO." ) ,
@@ -1255,7 +1255,7 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
1255
1255
print_link_args: bool = ( false , parse_bool, [ UNTRACKED ] ,
1256
1256
"print the arguments passed to the linker" ) ,
1257
1257
print_llvm_passes: bool = ( false , parse_bool, [ UNTRACKED ] ,
1258
- "prints the llvm optimization passes being run" ) ,
1258
+ "prints the LLVM optimization passes being run" ) ,
1259
1259
ast_json: bool = ( false , parse_bool, [ UNTRACKED ] ,
1260
1260
"print the AST as JSON and halt" ) ,
1261
1261
threads: Option <usize > = ( None , parse_opt_uint, [ UNTRACKED ] ,
@@ -1375,11 +1375,11 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
1375
1375
osx_rpath_install_name: bool = ( false , parse_bool, [ TRACKED ] ,
1376
1376
"pass `-install_name @rpath/...` to the macOS linker" ) ,
1377
1377
sanitizer: Option <Sanitizer > = ( None , parse_sanitizer, [ TRACKED ] ,
1378
- "Use a sanitizer" ) ,
1378
+ "use a sanitizer" ) ,
1379
1379
fuel: Option <( String , u64 ) > = ( None , parse_optimization_fuel, [ TRACKED ] ,
1380
1380
"set the optimization fuel quota for a crate" ) ,
1381
1381
print_fuel: Option <String > = ( None , parse_opt_string, [ TRACKED ] ,
1382
- "make Rustc print the total optimization fuel used by a crate" ) ,
1382
+ "make rustc print the total optimization fuel used by a crate" ) ,
1383
1383
force_unstable_if_unmarked: bool = ( false , parse_bool, [ TRACKED ] ,
1384
1384
"force all crates to be `rustc_private` unstable" ) ,
1385
1385
pre_link_arg: Vec <String > = ( vec![ ] , parse_string_push, [ UNTRACKED ] ,
@@ -1417,7 +1417,7 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
1417
1417
"in dep-info output, omit targets for tracking dependencies of the dep-info files \
1418
1418
themselves") ,
1419
1419
unpretty: Option <String > = ( None , parse_unpretty, [ UNTRACKED ] ,
1420
- "Present the input source, unstable (and less-pretty) variants;
1420
+ "present the input source, unstable (and less-pretty) variants;
1421
1421
valid types are any of the types for `--pretty`, as well as:
1422
1422
`expanded`, `expanded,identified`,
1423
1423
`expanded,hygiene` (with internal representations),
0 commit comments