diff options
| author | Stuart Cook <Zalathar@users.noreply.github.com> | 2025-09-04 10:01:59 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-04 10:01:59 +1000 |
| commit | 6f490f7ae126dbbff8b41cb39fb340efcb2c922b (patch) | |
| tree | b02b3b96d9ed7f859fffb43794a427fb39d9579e /compiler/rustc_parse | |
| parent | 57e8a5317a844ce3f7355c53db34df6dd017da66 (diff) | |
| parent | 5c4b61b4b4b13e408b28ecc91f4f517e78e6b5e7 (diff) | |
| download | rust-6f490f7ae126dbbff8b41cb39fb340efcb2c922b.tar.gz rust-6f490f7ae126dbbff8b41cb39fb340efcb2c922b.zip | |
Rollup merge of #146112 - scrabsha:push-utkysktvulto, r=WaffleLapkin
don't uppercase error messages
Diffstat (limited to 'compiler/rustc_parse')
| -rw-r--r-- | compiler/rustc_parse/messages.ftl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/messages.ftl b/compiler/rustc_parse/messages.ftl index 4ca2f57bd87..77dd313d9b8 100644 --- a/compiler/rustc_parse/messages.ftl +++ b/compiler/rustc_parse/messages.ftl @@ -58,7 +58,7 @@ parse_async_use_order_incorrect = the order of `use` and `async` is incorrect parse_at_dot_dot_in_struct_pattern = `@ ..` is not supported in struct patterns .suggestion = bind to each field separately or, if you don't need them, just remove `{$ident} @` -parse_at_in_struct_pattern = Unexpected `@` in struct pattern +parse_at_in_struct_pattern = unexpected `@` in struct pattern .note = struct patterns use `field: pattern` syntax to bind to fields .help = consider replacing `new_name @ field_name` with `field_name: new_name` if that is what you intended |
