about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--clippy_lints/src/methods/mod.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/clippy_lints/src/methods/mod.rs b/clippy_lints/src/methods/mod.rs
index f0810c906ef..01f97264d0b 100644
--- a/clippy_lints/src/methods/mod.rs
+++ b/clippy_lints/src/methods/mod.rs
@@ -452,8 +452,7 @@ declare_clippy_lint! {
 /// **Why is this bad?** As a convention, `new` methods are used to make a new
 /// instance of a type.
 ///
-/// **Known problems:** The lint fires when the return type is wrapping `Self`.
-/// Example: `fn new() -> Result<Self, E> {}`
+/// **Known problems:** None.
 ///
 /// **Example:**
 /// ```rust