about summary refs log tree commit diff
path: root/src/docs/repeat_once.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs/repeat_once.txt')
-rw-r--r--src/docs/repeat_once.txt25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/docs/repeat_once.txt b/src/docs/repeat_once.txt
deleted file mode 100644
index 3ba189c1945..00000000000
--- a/src/docs/repeat_once.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-### What it does
-Checks for usage of `.repeat(1)` and suggest the following method for each types.
-- `.to_string()` for `str`
-- `.clone()` for `String`
-- `.to_vec()` for `slice`
-
-The lint will evaluate constant expressions and values as arguments of `.repeat(..)` and emit a message if
-they are equivalent to `1`. (Related discussion in [rust-clippy#7306](https://github.com/rust-lang/rust-clippy/issues/7306))
-
-### Why is this bad?
-For example, `String.repeat(1)` is equivalent to `.clone()`. If cloning
-the string is the intention behind this, `clone()` should be used.
-
-### Example
-```
-fn main() {
-    let x = String::from("hello world").repeat(1);
-}
-```
-Use instead:
-```
-fn main() {
-    let x = String::from("hello world").clone();
-}
-```
\ No newline at end of file