Skip to content

Commit 123217b

Browse files
committed
Fix what looks like an inverted message
I believe this is trying to say there is something that is in the file, but shouldn't be.
1 parent 2773456 commit 123217b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/tidy/src/deps.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ pub static CRATES: &[&str] = &[
666666
for extra in expected.difference(&proc_macro_deps) {
667667
tidy_error!(
668668
bad,
669-
"`{extra}` is not registered in `src/bootstrap/src/utils/proc_macro_deps.rs`, but is not a proc-macro crate dependency",
669+
"`{extra}` is registered in `src/bootstrap/src/utils/proc_macro_deps.rs`, but is not a proc-macro crate dependency",
670670
);
671671
}
672672
if *bad != old_bad {

0 commit comments

Comments
 (0)