summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/src/docs/redundant_pattern.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/src/docs/redundant_pattern.txt')
-rw-r--r--src/tools/clippy/src/docs/redundant_pattern.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/tools/clippy/src/docs/redundant_pattern.txt b/src/tools/clippy/src/docs/redundant_pattern.txt
deleted file mode 100644
index 45f6cfc86..000000000
--- a/src/tools/clippy/src/docs/redundant_pattern.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-### What it does
-Checks for patterns in the form `name @ _`.
-
-### Why is this bad?
-It's almost always more readable to just use direct
-bindings.
-
-### Example
-```
-match v {
- Some(x) => (),
- y @ _ => (),
-}
-```
-
-Use instead:
-```
-match v {
- Some(x) => (),
- y => (),
-}
-``` \ No newline at end of file