diff options
| author | Stuart Cook <Zalathar@users.noreply.github.com> | 2025-04-05 13:18:16 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-05 13:18:16 +1100 |
| commit | 6907e011e452751b687b17dfd7178e02b62f5707 (patch) | |
| tree | 94901515057a625ee7da8ade25ace99bf52895ee /tests/ui | |
| parent | f04c935cf16b55f56b5dfe26c65617bdb7ec7fde (diff) | |
| parent | 842da5c1ae4225b39958912e136ee6e708f3c6c6 (diff) | |
| download | rust-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 'tests/ui')
| -rw-r--r-- | tests/ui/errors/wrong-target-spec.rs | 2 | ||||
| -rw-r--r-- | tests/ui/errors/wrong-target-spec.stderr | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/ui/errors/wrong-target-spec.rs b/tests/ui/errors/wrong-target-spec.rs index 9b31c943e3e..a3a0e05d826 100644 --- a/tests/ui/errors/wrong-target-spec.rs +++ b/tests/ui/errors/wrong-target-spec.rs @@ -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" diff --git a/tests/ui/errors/wrong-target-spec.stderr b/tests/ui/errors/wrong-target-spec.stderr index 8b06f404078..98b03ae00cb 100644 --- a/tests/ui/errors/wrong-target-spec.stderr +++ b/tests/ui/errors/wrong-target-spec.stderr @@ -1,2 +1,4 @@ -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" + | + = help: run `rustc --print target-list` for a list of built-in targets |
