about summary refs log tree commit diff
path: root/src/docs/never_loop.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs/never_loop.txt')
-rw-r--r--src/docs/never_loop.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/docs/never_loop.txt b/src/docs/never_loop.txt
deleted file mode 100644
index 737ccf415cb..00000000000
--- a/src/docs/never_loop.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-### What it does
-Checks for loops that will always `break`, `return` or
-`continue` an outer loop.
-
-### Why is this bad?
-This loop never loops, all it does is obfuscating the
-code.
-
-### Example
-```
-loop {
-    ..;
-    break;
-}
-```
\ No newline at end of file