about summary refs log tree commit diff
path: root/src/docs/needless_bool.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs/needless_bool.txt')
-rw-r--r--src/docs/needless_bool.txt26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/docs/needless_bool.txt b/src/docs/needless_bool.txt
deleted file mode 100644
index b5c78871f14..00000000000
--- a/src/docs/needless_bool.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-### What it does
-Checks for expressions of the form `if c { true } else {
-false }` (or vice versa) and suggests using the condition directly.
-
-### Why is this bad?
-Redundant code.
-
-### Known problems
-Maybe false positives: Sometimes, the two branches are
-painstakingly documented (which we, of course, do not detect), so they *may*
-have some value. Even then, the documentation can be rewritten to match the
-shorter code.
-
-### Example
-```
-if x {
-    false
-} else {
-    true
-}
-```
-
-Use instead:
-```
-!x
-```
\ No newline at end of file