diff options
| author | Oliver Schneider <oli-obk@users.noreply.github.com> | 2017-11-03 16:32:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-03 16:32:03 +0100 |
| commit | e5c1d512e754e93a56a7dd9ca27e82f502eee39a (patch) | |
| tree | d49fa9ae49a1fa2614ded4044d6ee808054de71b | |
| parent | d1d9cfc7221d0b0b791f571049b13cf86d1d8ed1 (diff) | |
| download | rust-e5c1d512e754e93a56a7dd9ca27e82f502eee39a.tar.gz rust-e5c1d512e754e93a56a7dd9ca27e82f502eee39a.zip | |
Update config.rs
| -rw-r--r-- | src/librustc/session/config.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs index 7a5b3afe5ae..94cc22f11a0 100644 --- a/src/librustc/session/config.rs +++ b/src/librustc/session/config.rs @@ -1476,8 +1476,8 @@ pub fn build_session_options_and_crate_config(matches: &getopts::Matches) let debugging_opts = build_debugging_options(matches, error_format); if !debugging_opts.unstable_options && error_format == ErrorOutputType::Json(true) { - early_error(ErrorOutputType::Json(false), "--error-format=pretty-json is unstable \ - (use -Zpretty-json-error-format)"); + early_error(ErrorOutputType::Json(false), + "--error-format=pretty-json is unstable"); } let mut output_types = BTreeMap::new(); |
