about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-11-10 14:49:36 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-11-10 14:49:36 +0530
commit0c327a78599e3fd596d391a497907ff9d8d0d5f9 (patch)
treec23ac4eaab13a09b5f6be7168e8a2eac1053a817
parent2968dfa28597e50b748b641f9b881c7012b041c6 (diff)
downloadrust-0c327a78599e3fd596d391a497907ff9d8d0d5f9.tar.gz
rust-0c327a78599e3fd596d391a497907ff9d8d0d5f9.zip
Fix help text for flowgraph debug options
-rw-r--r--src/librustc/session/config.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs
index 75b758649a6..2f22f33e39d 100644
--- a/src/librustc/session/config.rs
+++ b/src/librustc/session/config.rs
@@ -560,13 +560,13 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
     print_move_fragments: bool = (false, parse_bool,
         "Print out move-fragment data for every fn"),
     flowgraph_print_loans: bool = (false, parse_bool,
-        "Include loan analysis data in --pretty flowgraph output"),
+        "Include loan analysis data in --unpretty flowgraph output"),
     flowgraph_print_moves: bool = (false, parse_bool,
-        "Include move analysis data in --pretty flowgraph output"),
+        "Include move analysis data in --unpretty flowgraph output"),
     flowgraph_print_assigns: bool = (false, parse_bool,
-        "Include assignment analysis data in --pretty flowgraph output"),
+        "Include assignment analysis data in --unpretty flowgraph output"),
     flowgraph_print_all: bool = (false, parse_bool,
-        "Include all dataflow analysis data in --pretty flowgraph output"),
+        "Include all dataflow analysis data in --unpretty flowgraph output"),
     print_region_graph: bool = (false, parse_bool,
          "Prints region inference graph. \
           Use with RUST_REGION_GRAPH=help for more info"),