about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorJoshua Nelson <jyn514@gmail.com>2021-04-27 13:00:36 -0400
committerJoshua Nelson <jyn514@gmail.com>2021-04-27 13:00:36 -0400
commit1c8e12217704c3290bfb05f0f75688b6a7849e75 (patch)
treefbf8ab1a7a5c703592a1dc97cd14f0d5b6435016 /src/bootstrap
parent264442c140fb277f07b2d45a1fb0cef96e0a2caa (diff)
downloadrust-1c8e12217704c3290bfb05f0f75688b6a7849e75.tar.gz
rust-1c8e12217704c3290bfb05f0f75688b6a7849e75.zip
Switch `rustc::internal` from deny to warn
These should still obey deny-warnings.
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/check.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/check.rs b/src/bootstrap/check.rs
index ca8ea63047b..38dda5b744e 100644
--- a/src/bootstrap/check.rs
+++ b/src/bootstrap/check.rs
@@ -321,7 +321,7 @@ macro_rules! tool_check_step {
                 }
 
                 // Enable internal lints for clippy and rustdoc
-                // NOTE: this doesn't enable lints for any other tools unless they explicitly add `#![deny(rustc::internal)]`
+                // NOTE: this doesn't enable lints for any other tools unless they explicitly add `#![warn(rustc::internal)]`
                 // See https://github.com/rust-lang/rust/pull/80573#issuecomment-754010776
                 cargo.rustflag("-Zunstable-options");