about summary refs log tree commit diff
path: root/src/docs/duplicate_underscore_argument.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs/duplicate_underscore_argument.txt')
-rw-r--r--src/docs/duplicate_underscore_argument.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/docs/duplicate_underscore_argument.txt b/src/docs/duplicate_underscore_argument.txt
deleted file mode 100644
index a8fcd6a9fbe..00000000000
--- a/src/docs/duplicate_underscore_argument.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-### What it does
-Checks for function arguments having the similar names
-differing by an underscore.
-
-### Why is this bad?
-It affects code readability.
-
-### Example
-```
-fn foo(a: i32, _a: i32) {}
-```
-
-Use instead:
-```
-fn bar(a: i32, _b: i32) {}
-```
\ No newline at end of file