Skip to content

Commit 45e4c19

Browse files
committed
Rollup merge of #45231 - kennytm:patch-1, r=petrochenkov
Fix typo in libsyntax/parse/lexer/unicode_chars.rs `` ` `` (U+0060) should be the "grave" accent, not "Greek" accent.
2 parents e1a6795 + 19901df commit 45e4c19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libsyntax/parse/lexer/unicode_chars.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ const UNICODE_ARRAY: &'static [(char, &'static str, char)] = &[
144144
('‵', "Reversed Prime", '\''),
145145
('՚', "Armenian Apostrophe", '\''),
146146
('׳', "Hebrew Punctuation Geresh", '\''),
147-
('`', "Greek Accent", '\''),
147+
('`', "Grave Accent", '\''),
148148
('`', "Greek Varia", '\''),
149149
('`', "Fullwidth Grave Accent", '\''),
150150
('´', "Acute Accent", '\''),

0 commit comments

Comments
 (0)