summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/src/docs/if_same_then_else.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/src/docs/if_same_then_else.txt')
-rw-r--r--src/tools/clippy/src/docs/if_same_then_else.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/tools/clippy/src/docs/if_same_then_else.txt b/src/tools/clippy/src/docs/if_same_then_else.txt
new file mode 100644
index 000000000..75127016b
--- /dev/null
+++ b/src/tools/clippy/src/docs/if_same_then_else.txt
@@ -0,0 +1,15 @@
+### What it does
+Checks for `if/else` with the same body as the *then* part
+and the *else* part.
+
+### Why is this bad?
+This is probably a copy & paste error.
+
+### Example
+```
+let foo = if … {
+ 42
+} else {
+ 42
+};
+``` \ No newline at end of file