Fix link in trivial_regex

This commit is contained in:
Tuomas Siipola 2017-09-12 19:04:57 +03:00
parent 6d3db724b7
commit d768fe8c16
No known key found for this signature in database
GPG key ID: C697375E9F444461

View file

@ -29,10 +29,8 @@ declare_lint! {
"invalid regular expressions"
}
/// **What it does:** Checks for trivial [regex] creation (with `Regex::new`,
/// `RegexBuilder::new` or `RegexSet::new`).
///
/// [regex]: https://crates.io/crates/regex
/// **What it does:** Checks for trivial [regex](https://crates.io/crates/regex)
/// creation (with `Regex::new`, `RegexBuilder::new` or `RegexSet::new`).
///
/// **Why is this bad?** Matching the regex can likely be replaced by `==` or
/// `str::starts_with`, `str::ends_with` or `std::contains` or other `str`