]> git.lizzy.rs Git - rust.git/commitdiff
Fix wrong help message left in #31368
authorJohan Lorenzo <jlorenzo@mozilla.com>
Mon, 15 Feb 2016 16:44:06 +0000 (17:44 +0100)
committerJohan Lorenzo <jlorenzo@mozilla.com>
Mon, 15 Feb 2016 16:44:06 +0000 (17:44 +0100)
src/librustc/session/config.rs

index c96713a72851a3ff930e06eef53bdc70d49e2d5c..d09ffc308756375b94d1df316d55e8d8854fd2f4 100644 (file)
@@ -509,7 +509,7 @@ fn parse_passes(slot: &mut Passes, v: Option<&str>) -> bool {
     link_args: Option<Vec<String>> = (None, parse_opt_list,
         "extra arguments to pass to the linker (space separated)"),
     link_dead_code: bool = (false, parse_bool,
-        "let the linker strip dead coded (turning it on can be used for code coverage)"),
+        "don't let linker strip dead code (turning it on can be used for code coverage)"),
     lto: bool = (false, parse_bool,
         "perform LLVM link-time optimizations"),
     target_cpu: Option<String> = (None, parse_opt_string,