]> git.lizzy.rs Git - rust.git/commitdiff
Typo
authorSamuel E. Moelius III <sam@moeli.us>
Thu, 18 Feb 2021 02:54:15 +0000 (21:54 -0500)
committerSamuel E. Moelius III <sam@moeli.us>
Tue, 23 Feb 2021 23:50:30 +0000 (18:50 -0500)
clippy_dev/src/lib.rs

index 296ef00b3f16fa19ae1b065c11323632940f5085..61e423d82f3ed8a42149d63086aba749e002b81f 100644 (file)
@@ -219,7 +219,7 @@ fn parse_contents(content: &str, module: &str) -> impl Iterator<Item = Lint> {
     lints.chain(deprecated).collect::<Vec<Lint>>().into_iter()
 }
 
-/// Collects all .rs files in the `clippy_lints/src` and `clippy_lints/src` directories
+/// Collects all .rs files in the `clippy_lints/src` and `clippy_utils/src` directories
 fn lint_files() -> impl Iterator<Item = walkdir::DirEntry> {
     // We use `WalkDir` instead of `fs::read_dir` here in order to recurse into subdirectories.
     // Otherwise we would not collect all the lints, for example in `clippy_lints/src/methods/`.