about summary refs log tree commit diff
diff options
context:
space:
mode:
authorflip1995 <hello@philkrones.com>2019-07-30 09:51:45 +0200
committerflip1995 <hello@philkrones.com>2019-08-01 15:14:06 +0200
commit7a73b8fdfaa6bec11d9326d0a2077f6cf6d238a7 (patch)
treedec6164fdbcb013bd4eaa072199d974816fde8f5
parente6a836e2e801a3c0675b3dd24e0de1c810470813 (diff)
downloadrust-7a73b8fdfaa6bec11d9326d0a2077f6cf6d238a7.tar.gz
rust-7a73b8fdfaa6bec11d9326d0a2077f6cf6d238a7.zip
Remove Known problems for UNNECESSARY_UNWRAP
This shouldn't happen with NLL
-rw-r--r--clippy_lints/src/unwrap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/unwrap.rs b/clippy_lints/src/unwrap.rs
index 830e1fc4d25..c2fb62c3017 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