Skip to content

Commit

Permalink
Rollup merge of #45231 - kennytm:patch-1, r=petrochenkov
Browse files Browse the repository at this point in the history
Fix typo in libsyntax/parse/lexer/unicode_chars.rs

`` ` `` (U+0060) should be the "grave" accent, not "Greek" accent.
  • Loading branch information
kennytm committed Oct 12, 2017
2 parents e1a6795 + 19901df commit 45e4c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libsyntax/parse/lexer/unicode_chars.rs
Original file line number Diff line number Diff line change
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 45e4c19

Please sign in to comment.