about summary refs log tree commit diff
path: root/clippy_lints/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-05-19 22:50:55 +0200
committerGitHub <noreply@github.com>2024-05-19 22:50:55 +0200
commit647f222885545f6cd41faec587e59d25d31fa8aa (patch)
tree86021a2a20ddfdffb2c632f6c7894c4f7183ffe4 /clippy_lints/src
parent37dfd973b77996b4ec0c24f75cef14af059c6523 (diff)
parentae547e30009635de6f8d6451cf8e355e5d5207b7 (diff)
downloadrust-647f222885545f6cd41faec587e59d25d31fa8aa.tar.gz
rust-647f222885545f6cd41faec587e59d25d31fa8aa.zip
Rollup merge of #124948 - blyxyas:remove-repeated-words, r=compiler-errors
chore: Remove repeated words (extension of #124924)

When I saw #124924 I thought "Hey, I'm sure that there are far more than just two typos of this nature in the codebase". So here's some more typo-fixing.

Some found with regex, some found with a spellchecker. Every single one manually reviewed by me (along with hundreds of false negatives by the tools)
Diffstat (limited to 'clippy_lints/src')
-rw-r--r--clippy_lints/src/methods/needless_collect.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/methods/needless_collect.rs b/clippy_lints/src/methods/needless_collect.rs
index 1c695655536..f26f164fa54 100644
--- a/clippy_lints/src/methods/needless_collect.rs
+++ b/clippy_lints/src/methods/needless_collect.rs
@@ -127,7 +127,7 @@ pub(super) fn check<'tcx>(
     }
 }
 
-/// checks for for collecting into a (generic) method or function argument
+/// checks for collecting into a (generic) method or function argument
 /// taking an `IntoIterator`
 fn check_collect_into_intoiterator<'tcx>(
     cx: &LateContext<'tcx>,