diff options
| author | Aaron Hill <aa1ronham@gmail.com> | 2020-10-30 21:41:16 -0400 |
|---|---|---|
| committer | Aaron Hill <aa1ronham@gmail.com> | 2020-10-30 21:41:16 -0400 |
| commit | 6db00a213a6c8815aed7ae2d4e71d8a1b5b6338e (patch) | |
| tree | 00eadcc7566737f16cb6fe53f1cdbc18027bc696 /src | |
| parent | ac12e6fd0ede4b7043851960e1e1749f708356d9 (diff) | |
| download | rust-6db00a213a6c8815aed7ae2d4e71d8a1b5b6338e.tar.gz rust-6db00a213a6c8815aed7ae2d4e71d8a1b5b6338e.zip | |
Update Clippy path to `Lint`
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/clippy/clippy_lints/src/utils/paths.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/clippy/clippy_lints/src/utils/paths.rs b/src/tools/clippy/clippy_lints/src/utils/paths.rs index cd72fdd61fd..736a531eda6 100644 --- a/src/tools/clippy/clippy_lints/src/utils/paths.rs +++ b/src/tools/clippy/clippy_lints/src/utils/paths.rs @@ -59,7 +59,7 @@ pub const IO_WRITE: [&str; 3] = ["std", "io", "Write"]; pub const ITERATOR: [&str; 5] = ["core", "iter", "traits", "iterator", "Iterator"]; pub const LATE_CONTEXT: [&str; 2] = ["rustc_lint", "LateContext"]; pub const LINKED_LIST: [&str; 4] = ["alloc", "collections", "linked_list", "LinkedList"]; -pub const LINT: [&str; 3] = ["rustc_session", "lint", "Lint"]; +pub const LINT: [&str; 2] = ["rustc_lint_defs", "Lint"]; pub const MEM_DISCRIMINANT: [&str; 3] = ["core", "mem", "discriminant"]; pub const MEM_FORGET: [&str; 3] = ["core", "mem", "forget"]; pub const MEM_MANUALLY_DROP: [&str; 4] = ["core", "mem", "manually_drop", "ManuallyDrop"]; |
