From: Oliver S̶c̶h̶n̶e̶i̶d̶e̶r Scherer Date: Thu, 22 Nov 2018 09:22:25 +0000 (+0100) Subject: Merge branch 'master' into version_ids X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=87ec0580f9a5268cbe8a61dbde6492d7c1e364ab;p=rust.git Merge branch 'master' into version_ids --- 87ec0580f9a5268cbe8a61dbde6492d7c1e364ab diff --cc clippy_lints/src/utils/mod.rs index 3a16c6a892b,f7fbd5edb52..6e81f3d0199 --- a/clippy_lints/src/utils/mod.rs +++ b/clippy_lints/src/utils/mod.rs @@@ -539,11 -539,8 +539,11 @@@ impl<'a> DiagnosticWrapper<'a> fn docs_link(&mut self, lint: &'static Lint) { if env::var("CLIPPY_DISABLE_DOCS_LINKS").is_err() { self.0.help(&format!( - "for further information visit https://rust-lang-nursery.github.io/rust-clippy/{}/index.html#{}", - "for further information visit https://rust-lang.github.io/rust-clippy/v{}/index.html#{}", - env!("CARGO_PKG_VERSION"), ++ "for further information visit https://rust-lang.github.io/rust-clippy/{}/index.html#{}", + &option_env!("RUST_RELEASE_NUM").map_or("master".to_string(), |n| { + // extract just major + minor version and ignore patch versions + format!("rust-{}", n.rsplitn(2, '.').nth(1).unwrap()) + }), lint.name_lower().replacen("clippy::", "", 1) )); }