]> git.lizzy.rs Git - rust.git/commitdiff
Remove Known problems for UNNECESSARY_UNWRAP
authorflip1995 <hello@philkrones.com>
Tue, 30 Jul 2019 07:51:45 +0000 (09:51 +0200)
committerflip1995 <hello@philkrones.com>
Thu, 1 Aug 2019 13:14:06 +0000 (15:14 +0200)
This shouldn't happen with NLL

clippy_lints/src/unwrap.rs

index 830e1fc4d25735b770960161fa1abf77d54cf8d8..c2fb62c3017dcbf63448ccf6da2c320fcc51d6c7 100644 (file)
@@ -14,7 +14,7 @@
     ///
     /// **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