From db3a927432586c33a4aaad54951056b8ced30439 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Mon, 8 Apr 2024 12:50:28 -0700 Subject: [PATCH] Fix markdown syntax in str_split_at_newline docs --- clippy_lints/src/methods/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/clippy_lints/src/methods/mod.rs b/clippy_lints/src/methods/mod.rs index 2fb317c8c68ed..0939c02856429 100644 --- a/clippy_lints/src/methods/mod.rs +++ b/clippy_lints/src/methods/mod.rs @@ -3938,7 +3938,6 @@ declare_clippy_lint! { /// This lint cannot detect if the split is intentionally restricted to a single type of newline (`"\n"` or /// `"\r\n"`), for example during the parsing of a specific file format in which precisely one newline type is /// valid. - /// ``` #[clippy::version = "1.77.0"] pub STR_SPLIT_AT_NEWLINE, pedantic,