about summary refs log tree commit diff
diff options
context:
space:
mode:
authortaiga.watanabe <taiga.watanabe@va-sa-ra.co.jp>2024-02-21 10:42:45 +0900
committernot-elm <elmgameinfo@gmail.com>2024-02-21 23:26:30 +0900
commit672bd5e3876290185e1e1b421ff0f0d50ea1e568 (patch)
tree9e4cc0502e63142325b2ea4fe8983ee206de7550
parentaa8a82ec269a34d9bed7919ba8926c8551efdbeb (diff)
downloadrust-672bd5e3876290185e1e1b421ff0f0d50ea1e568.tar.gz
rust-672bd5e3876290185e1e1b421ff0f0d50ea1e568.zip
DELETE: Known problems Section
The `Known problems` section was removed because it is old information.
-rw-r--r--clippy_lints/src/no_effect.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/clippy_lints/src/no_effect.rs b/clippy_lints/src/no_effect.rs
index 6adb5098ed3..1b4e1ed066b 100644
--- a/clippy_lints/src/no_effect.rs
+++ b/clippy_lints/src/no_effect.rs
@@ -43,10 +43,6 @@ declare_clippy_lint! {
     /// executed. However, as they have no effect and shouldn't be used further on, all they
     /// do is make the code less readable.
     ///
-    /// ### Known problems
-    /// Further usage of this variable is not checked, which can lead to false positives if it is
-    /// used later in the code.
-    ///
     /// ### Example
     /// ```rust,ignore
     /// let _i_serve_no_purpose = 1;