about summary refs log tree commit diff
path: root/tests/ui/macros
diff options
context:
space:
mode:
authorLieselotte <52315535+she3py@users.noreply.github.com>2024-10-14 23:22:51 +0200
committerLieselotte <52315535+she3py@users.noreply.github.com>2024-10-14 23:22:51 +0200
commitdda3066805ef0a0ad5f2d0d2cdb6bc0b66d8c19b (patch)
treeae5f32f841e40f05c401989c2f9ca7465714a7b9 /tests/ui/macros
parent9322d183f45e0fd5a509820874cc5ff27744a479 (diff)
downloadrust-dda3066805ef0a0ad5f2d0d2cdb6bc0b66d8c19b.tar.gz
rust-dda3066805ef0a0ad5f2d0d2cdb6bc0b66d8c19b.zip
Remove `'apostrophes'` from `rustc_parse_format`
Diffstat (limited to 'tests/ui/macros')
-rw-r--r--tests/ui/macros/issue-51848.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/macros/issue-51848.stderr b/tests/ui/macros/issue-51848.stderr
index c25bedf37b7..30b64113d73 100644
--- a/tests/ui/macros/issue-51848.stderr
+++ b/tests/ui/macros/issue-51848.stderr
@@ -1,8 +1,8 @@
-error: invalid format string: expected `'}'` but string was terminated
+error: invalid format string: expected `}` but string was terminated
   --> $DIR/issue-51848.rs:6:20
    |
 LL |         println!("{");
-   |                   -^ expected `'}'` in format string
+   |                   -^ expected `}` in format string
    |                   |
    |                   because of this opening brace
 ...