about summary refs log tree commit diff
path: root/src/docs/overflow_check_conditional.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs/overflow_check_conditional.txt')
-rw-r--r--src/docs/overflow_check_conditional.txt11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/docs/overflow_check_conditional.txt b/src/docs/overflow_check_conditional.txt
deleted file mode 100644
index a09cc18a0bc..00000000000
--- a/src/docs/overflow_check_conditional.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-### What it does
-Detects classic underflow/overflow checks.
-
-### Why is this bad?
-Most classic C underflow/overflow checks will fail in
-Rust. Users can use functions like `overflowing_*` and `wrapping_*` instead.
-
-### Example
-```
-a + b < a;
-```
\ No newline at end of file