use lower case to match other error messages

This commit is contained in:
Tshepang Mbambo 2025-04-03 01:07:55 +02:00
parent ae9173d7dd
commit 5c2a32296d
5 changed files with 6 additions and 6 deletions

View file

@ -1424,8 +1424,8 @@ pub fn build_target_config(
target
}
Err(e) => early_dcx.early_fatal(format!(
"Error loading target specification: {e}. \
Run `rustc --print target-list` for a list of built-in targets"
"error loading target specification: {e}; \
run `rustc --print target-list` for a list of built-in targets"
)),
}
}

View file

@ -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, .. } => {

View file

@ -14,7 +14,7 @@ fn main() {
.input("foo.rs")
.target("my-invalid-platform.json")
.run_fail()
.assert_stderr_contains("Error loading target specification");
.assert_stderr_contains("error loading target specification");
rustc()
.input("foo.rs")
.target("my-incomplete-platform.json")

View file

@ -7,4 +7,4 @@
fn main() {}
//~? ERROR Error loading target specification: Could not find specification for target "x86_64_unknown-linux-musl"
//~? ERROR error loading target specification: could not find specification for target "x86_64_unknown-linux-musl"

View file

@ -1,2 +1,2 @@
error: Error loading target specification: Could not find specification for target "x86_64_unknown-linux-musl". Run `rustc --print target-list` for a list of built-in targets
error: error loading target specification: could not find specification for target "x86_64_unknown-linux-musl"; run `rustc --print target-list` for a list of built-in targets