about summary refs log tree commit diff
path: root/src/docs/question_mark.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs/question_mark.txt')
-rw-r--r--src/docs/question_mark.txt18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/docs/question_mark.txt b/src/docs/question_mark.txt
deleted file mode 100644
index 4dc987be881..00000000000
--- a/src/docs/question_mark.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-### What it does
-Checks for expressions that could be replaced by the question mark operator.
-
-### Why is this bad?
-Question mark usage is more idiomatic.
-
-### Example
-```
-if option.is_none() {
-    return None;
-}
-```
-
-Could be written:
-
-```
-option?;
-```
\ No newline at end of file