rust-lang-nursery/rust-clippy => rust-lang/rust-clippy

This commit is contained in:
Matthias Krüger
2018-11-22 04:40:09 +01:00
parent 1d5108c264
commit f5929e0797
30 changed files with 51 additions and 52 deletions

View File

@@ -32,7 +32,7 @@ lazy_static! {
"(?P<desc>(?:[^"\\]+|\\(?s).(?-s))*)"\s*[})]
"#).unwrap();
static ref NL_ESCAPE_RE: Regex = Regex::new(r#"\\\n\s*"#).unwrap();
pub static ref DOCS_LINK: String = "https://rust-lang-nursery.github.io/rust-clippy/master/index.html".to_string();
pub static ref DOCS_LINK: String = "https://rust-lang.github.io/rust-clippy/master/index.html".to_string();
}
/// Lint data parsed from the Clippy source code.