diff options
| author | bors <bors@rust-lang.org> | 2020-10-19 06:01:21 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-10-19 06:01:21 +0000 |
| commit | 3d3507230c62e94dcef2cea8c25c90d1d171e329 (patch) | |
| tree | 37edb8c894ce6660fd4af9c25c1ea8fdcfcf970e | |
| parent | 01dd31fa60d2decef6322b94b65bd25a1194537e (diff) | |
| parent | be136b27126cfb614eff3c0b032dcd2b3837db26 (diff) | |
| download | rust-3d3507230c62e94dcef2cea8c25c90d1d171e329.tar.gz rust-3d3507230c62e94dcef2cea8c25c90d1d171e329.zip | |
Auto merge of #6195 - giraffate:sync-from-rust, r=ebroto
Rustup I followed these steps: <https://github.com/rust-lang/rust-clippy/blob/master/CONTRIBUTING.md#fixing-build-failures-caused-by-rust>. 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 277da9d3f3a..5e769c690a6 100644 --- a/clippy_lints/src/utils/paths.rs +++ b/clippy_lints/src/utils/paths.rs @@ -14,7 +14,7 @@ pub const BINARY_HEAP: [&str; 4] = ["alloc", "collections", "binary_heap", "Bina pub const BORROW_TRAIT: [&str; 3] = ["core", "borrow", "Borrow"]; pub const BOX: [&str; 3] = ["alloc", "boxed", "Box"]; pub const BTREEMAP: [&str; 5] = ["alloc", "collections", "btree", "map", "BTreeMap"]; -pub const BTREEMAP_ENTRY: [&str; 5] = ["alloc", "collections", "btree", "map", "Entry"]; +pub const BTREEMAP_ENTRY: [&str; 6] = ["alloc", "collections", "btree", "map", "entry", "Entry"]; pub const BTREESET: [&str; 5] = ["alloc", "collections", "btree", "set", "BTreeSet"]; pub const CLONE_TRAIT: [&str; 3] = ["core", "clone", "Clone"]; pub const CLONE_TRAIT_METHOD: [&str; 4] = ["core", "clone", "Clone", "clone"]; |
