diff options
| author | Eric Huss <eric@huss.org> | 2025-02-17 10:58:57 -0800 |
|---|---|---|
| committer | Eric Huss <eric@huss.org> | 2025-02-17 10:58:57 -0800 |
| commit | 123217b3b8233ba0cc852f81fe6ca55c47bed8cc (patch) | |
| tree | ccb7839b163da229c77982f422b1f0fee11cfb41 | |
| parent | 2773456f5f3560bb0590d32452ca58f21b0181d0 (diff) | |
| download | rust-123217b3b8233ba0cc852f81fe6ca55c47bed8cc.tar.gz rust-123217b3b8233ba0cc852f81fe6ca55c47bed8cc.zip | |
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.
| -rw-r--r-- | src/tools/tidy/src/deps.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tidy/src/deps.rs b/src/tools/tidy/src/deps.rs index bfff5a8e17e..51e58b4e4fc 100644 --- a/src/tools/tidy/src/deps.rs +++ b/src/tools/tidy/src/deps.rs @@ -666,7 +666,7 @@ pub static CRATES: &[&str] = &[ for extra in expected.difference(&proc_macro_deps) { tidy_error!( bad, - "`{extra}` is not registered in `src/bootstrap/src/utils/proc_macro_deps.rs`, but is not a proc-macro crate dependency", + "`{extra}` is registered in `src/bootstrap/src/utils/proc_macro_deps.rs`, but is not a proc-macro crate dependency", ); } if *bad != old_bad { |
