Skip to content

Commit

Permalink
Fix typo in libsyntax/parse/lexer/unicode_chars.rs
Browse files Browse the repository at this point in the history
` (U+0060) should be the "grave" accent, not "Greek" accent.
  • Loading branch information
kennytm committed Oct 12, 2017
1 parent 1807f27 commit 19901df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libsyntax/parse/lexer/unicode_chars.rs
Expand Up @@ -144,7 +144,7 @@ const UNICODE_ARRAY: &'static [(char, &'static str, char)] = &[
('‵', "Reversed Prime", '\''),
('՚', "Armenian Apostrophe", '\''),
('׳', "Hebrew Punctuation Geresh", '\''),
('`', "Greek Accent", '\''),
('`', "Grave Accent", '\''),
('`', "Greek Varia", '\''),
('`', "Fullwidth Grave Accent", '\''),
('´', "Acute Accent", '\''),
Expand Down

0 comments on commit 19901df

Please sign in to comment.