From 7a73b8fdfaa6bec11d9326d0a2077f6cf6d238a7 Mon Sep 17 00:00:00 2001 From: flip1995 Date: Tue, 30 Jul 2019 09:51:45 +0200 Subject: [PATCH] Remove Known problems for UNNECESSARY_UNWRAP This shouldn't happen with NLL --- clippy_lints/src/unwrap.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/unwrap.rs b/clippy_lints/src/unwrap.rs index 830e1fc4d257..c2fb62c3017d 100644 --- a/clippy_lints/src/unwrap.rs +++ b/clippy_lints/src/unwrap.rs @@ -14,7 +14,7 @@ declare_clippy_lint! { /// /// **Why is this bad?** Using `if let` or `match` is more idiomatic. /// - /// **Known problems:** Limitations of the borrow checker might make unwrap() necessary sometimes? + /// **Known problems:** None /// /// **Example:** /// ```rust