Skip to content

Commit 8e6abc6

Browse files
committed
alphabetize paths to pass dogfood
1 parent ddad5e0 commit 8e6abc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/utils/paths.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ pub const LINKED_LIST: [&'static str; 3] = ["alloc", "linked_list", "LinkedList"
4040
pub const LINT: [&'static str; 3] = ["rustc", "lint", "Lint"];
4141
pub const LINT_ARRAY: [&'static str; 3] = ["rustc", "lint", "LintArray"];
4242
pub const MEM_FORGET: [&'static str; 3] = ["core", "mem", "forget"];
43-
pub const MEM_ZEROED: [&'static str; 3] = ["core", "mem", "zeroed"];
4443
pub const MEM_UNINIT: [&'static str; 3] = ["core", "mem", "uninitialized"];
44+
pub const MEM_ZEROED: [&'static str; 3] = ["core", "mem", "zeroed"];
4545
pub const MUTEX: [&'static str; 4] = ["std", "sync", "mutex", "Mutex"];
4646
pub const OPEN_OPTIONS: [&'static str; 3] = ["std", "fs", "OpenOptions"];
4747
pub const OPS_MODULE: [&'static str; 2] = ["core", "ops"];

0 commit comments

Comments
 (0)