diff options
| author | bors <bors@rust-lang.org> | 2020-11-02 07:36:35 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-11-02 07:36:35 +0000 |
| commit | c45255b14573e9cf641a766d225bc73ae7f36fc8 (patch) | |
| tree | d65f53aac75be78b2c7a1652b50af58ff6e7c3cb | |
| parent | e298c830af37e48a7778b3e6a487a2107230e8a6 (diff) | |
| parent | 4a3a249cb6de64d0d669c249185d469a040ac353 (diff) | |
Auto merge of #6282 - giraffate:sync-from-rust, r=ebroto
Rustup changelog: none
| -rw-r--r-- | clippy_lints/src/utils/paths.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/utils/paths.rs b/clippy_lints/src/utils/paths.rs index cd72fdd61fd..736a531eda6 100644 --- a/clippy_lints/src/utils/paths.rs +++ b/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"]; |
