We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dd8c06 commit fd05696Copy full SHA for fd05696
clippy_lints/src/utils/mod.rs
@@ -507,7 +507,7 @@ impl<'a> DiagnosticWrapper<'a> {
507
fn docs_link(&mut self, lint: &'static Lint) {
508
if env::var("CLIPPY_DISABLE_DOCS_LINKS").is_err() {
509
self.0.help(&format!(
510
- "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/{}/index.html#{}",
511
&option_env!("RUST_RELEASE_NUM").map_or("master".to_string(), |n| {
512
// extract just major + minor version and ignore patch versions
513
format!("rust-{}", n.rsplitn(2, '.').nth(1).unwrap())
0 commit comments