From: Johan Lorenzo Date: Mon, 15 Feb 2016 16:44:06 +0000 (+0100) Subject: Fix wrong help message left in #31368 X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=040cbc4566962faa402780b68918b188a5346522;p=rust.git Fix wrong help message left in #31368 --- diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs index c96713a7285..d09ffc30875 100644 --- a/src/librustc/session/config.rs +++ b/src/librustc/session/config.rs @@ -509,7 +509,7 @@ fn parse_passes(slot: &mut Passes, v: Option<&str>) -> bool { link_args: Option> = (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 = (None, parse_opt_string,