about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCameron Steffen <cam.steffen94@gmail.com>2020-08-03 16:23:20 -0500
committerGitHub <noreply@github.com>2020-08-03 16:23:20 -0500
commit0ccdf2913a335c4f0b34098f84baeeb3fc852255 (patch)
treed9632324d85944c542781d65dbac0c0708f8cece
parentbbbc973a842fc515f9b22d10d103bbf2d7827697 (diff)
downloadrust-0ccdf2913a335c4f0b34098f84baeeb3fc852255.tar.gz
rust-0ccdf2913a335c4f0b34098f84baeeb3fc852255.zip
Remove obsolete known problems unnecessary_fold
-rw-r--r--clippy_lints/src/methods/mod.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/clippy_lints/src/methods/mod.rs b/clippy_lints/src/methods/mod.rs
index 9edcdd979ff..ff8da6b4015 100644
--- a/clippy_lints/src/methods/mod.rs
+++ b/clippy_lints/src/methods/mod.rs
@@ -1052,8 +1052,7 @@ declare_clippy_lint! {
     ///
     /// **Why is this bad?** Readability.
     ///
-    /// **Known problems:** False positive in pattern guards. Will be resolved once
-    /// non-lexical lifetimes are stable.
+    /// **Known problems:** None.
     ///
     /// **Example:**
     /// ```rust