about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoshua Holmer <jholmer@dminc.com>2018-10-16 09:04:02 -0400
committerJoshua Holmer <jholmer@dminc.com>2018-10-16 09:04:02 -0400
commit33847b579eb5479f888a0caae37ebc469dd9ccd2 (patch)
treecd846ab0080d5408ce86526cf3afeb595667bc56
parent863c8e26fc66e856456cb05e75e1d6c821a04ec6 (diff)
downloadrust-33847b579eb5479f888a0caae37ebc469dd9ccd2.tar.gz
rust-33847b579eb5479f888a0caae37ebc469dd9ccd2.zip
Update known problems for unnecessary_fold
-rw-r--r--clippy_lints/src/methods/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/clippy_lints/src/methods/mod.rs b/clippy_lints/src/methods/mod.rs
index 7c15eb677cc..6fc563a42ea 100644
--- a/clippy_lints/src/methods/mod.rs
+++ b/clippy_lints/src/methods/mod.rs
@@ -688,7 +688,8 @@ declare_clippy_lint! {
 ///
 /// **Why is this bad?** Readability.
 ///
-/// **Known problems:** None.
+/// **Known problems:** False positive in pattern guards. Will be resolved once
+/// non-lexical lifetimes are stable.
 ///
 /// **Example:**
 /// ```rust