From 3c6c7d5de9cf989b19e82298735486a03eac4b75 Mon Sep 17 00:00:00 2001 From: Jason Newcomb Date: Mon, 16 Aug 2021 19:57:14 -0400 Subject: [PATCH] Update docs for `expl_impl_clone_on_copy`. Bug was fixed in 879fa5c9721c89c27be6a9db5f51d935a51f549b1~ --- clippy_lints/src/derive.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/clippy_lints/src/derive.rs b/clippy_lints/src/derive.rs index dcfa5253f834..8416b8440dfb 100644 --- a/clippy_lints/src/derive.rs +++ b/clippy_lints/src/derive.rs @@ -105,9 +105,6 @@ declare_clippy_lint! { /// nothing more than copy the object, which is what `#[derive(Copy, Clone)]` /// gets you. /// - /// ### Known problems - /// Bounds of generic types are sometimes wrong: https://github.com/rust-lang/rust/issues/26925 - /// /// ### Example /// ```rust,ignore /// #[derive(Copy)]