diff --git a/clippy_lints/src/match_str_case_mismatch.rs b/clippy_lints/src/match_str_case_mismatch.rs index 85aec93670b9..d97a878825af 100644 --- a/clippy_lints/src/match_str_case_mismatch.rs +++ b/clippy_lints/src/match_str_case_mismatch.rs @@ -21,7 +21,6 @@ declare_clippy_lint! { /// ### Example /// ```rust /// # let text = "Foo"; - /// /// match &*text.to_ascii_lowercase() { /// "foo" => {}, /// "Bar" => {}, @@ -31,7 +30,6 @@ declare_clippy_lint! { /// Use instead: /// ```rust /// # let text = "Foo"; - /// /// match &*text.to_ascii_lowercase() { /// "foo" => {}, /// "bar" => {},