Skip to content

Commit 0c327a7

Browse files
committed
Fix help text for flowgraph debug options
1 parent 2968dfa commit 0c327a7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/librustc/session/config.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -560,13 +560,13 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
560560
print_move_fragments: bool = (false, parse_bool,
561561
"Print out move-fragment data for every fn"),
562562
flowgraph_print_loans: bool = (false, parse_bool,
563-
"Include loan analysis data in --pretty flowgraph output"),
563+
"Include loan analysis data in --unpretty flowgraph output"),
564564
flowgraph_print_moves: bool = (false, parse_bool,
565-
"Include move analysis data in --pretty flowgraph output"),
565+
"Include move analysis data in --unpretty flowgraph output"),
566566
flowgraph_print_assigns: bool = (false, parse_bool,
567-
"Include assignment analysis data in --pretty flowgraph output"),
567+
"Include assignment analysis data in --unpretty flowgraph output"),
568568
flowgraph_print_all: bool = (false, parse_bool,
569-
"Include all dataflow analysis data in --pretty flowgraph output"),
569+
"Include all dataflow analysis data in --unpretty flowgraph output"),
570570
print_region_graph: bool = (false, parse_bool,
571571
"Prints region inference graph. \
572572
Use with RUST_REGION_GRAPH=help for more info"),

0 commit comments

Comments
 (0)