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