about summary refs log tree commit diff
path: root/compiler/rustc_target/src/spec/mod.rs
diff options
context:
space:
mode:
authorStuart Cook <Zalathar@users.noreply.github.com>2025-04-05 13:18:16 +1100
committerGitHub <noreply@github.com>2025-04-05 13:18:16 +1100
commit6907e011e452751b687b17dfd7178e02b62f5707 (patch)
tree94901515057a625ee7da8ade25ace99bf52895ee /compiler/rustc_target/src/spec/mod.rs
parentf04c935cf16b55f56b5dfe26c65617bdb7ec7fde (diff)
parent842da5c1ae4225b39958912e136ee6e708f3c6c6 (diff)
downloadrust-6907e011e452751b687b17dfd7178e02b62f5707.tar.gz
rust-6907e011e452751b687b17dfd7178e02b62f5707.zip
Rollup merge of #139285 - tshepang:uniform-case, r=jieyouxu
use lower case to match other error messages
Diffstat (limited to 'compiler/rustc_target/src/spec/mod.rs')
-rw-r--r--compiler/rustc_target/src/spec/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/spec/mod.rs b/compiler/rustc_target/src/spec/mod.rs
index 981dded2601..98db0af30c2 100644
--- a/compiler/rustc_target/src/spec/mod.rs
+++ b/compiler/rustc_target/src/spec/mod.rs
@@ -3516,7 +3516,7 @@ impl Target {
                     Err("the `i586-pc-windows-msvc` target has been removed. Use the `i686-pc-windows-msvc` target instead.\n\
                         Windows 10 (the minimum required OS version) requires a CPU baseline of at least i686 so you can safely switch".into())
                 } else {
-                    Err(format!("Could not find specification for target {target_tuple:?}"))
+                    Err(format!("could not find specification for target {target_tuple:?}"))
                 }
             }
             TargetTuple::TargetJson { ref contents, .. } => {