diff options
| author | Fridtjof Stoldt <xFrednet@gmail.com> | 2024-12-27 22:03:38 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-27 22:03:38 +0000 |
| commit | 363e61dcbf0a638747d2c096b7b1f105e2e1a459 (patch) | |
| tree | 5cb8f594381426bf89996d08875adf794545800b | |
| parent | 4be0e62b224ae341709b2acecdbb102597ae0841 (diff) | |
| parent | 71f1a8702d859dce1b85a021105132962a593d42 (diff) | |
remove description of known problems in `match_same_arms` that have already been resolved (#13873)
The "known problems" pointed out in the `match_same_arms` lint seem to have already been resolved. changelog: none
| -rw-r--r-- | clippy_lints/src/matches/mod.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/clippy_lints/src/matches/mod.rs b/clippy_lints/src/matches/mod.rs index 1fd2ebcb54a..ac1eae07eff 100644 --- a/clippy_lints/src/matches/mod.rs +++ b/clippy_lints/src/matches/mod.rs @@ -583,11 +583,6 @@ declare_clippy_lint! { /// are the same on purpose, you can factor them /// [using `|`](https://doc.rust-lang.org/book/patterns.html#multiple-patterns). /// - /// ### Known problems - /// False positive possible with order dependent `match` - /// (see issue - /// [#860](https://github.com/rust-lang/rust-clippy/issues/860)). - /// /// ### Example /// ```rust,ignore /// match foo { |
