diff options
| -rw-r--r-- | clippy_dev/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_dev/src/lib.rs b/clippy_dev/src/lib.rs index 296ef00b3f1..61e423d82f3 100644 --- a/clippy_dev/src/lib.rs +++ b/clippy_dev/src/lib.rs @@ -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/`. |
