Skip to content

Commit

Permalink
Rollup merge of rust-lang#62854 - andrewda:fix-unicode-name, r=petroc…
Browse files Browse the repository at this point in the history
…henkov

Fix typo in Unicode character name

There's a small typo in the Unicode character definitions: "Latin Epigraphic Letter Dideways" should be "Latin Epigraphic Letter Sideways I" (see [here](https://www.compart.com/en/unicode/U+A7F7)).
  • Loading branch information
Centril authored Jul 22, 2019
2 parents 16f585c + 1520fab commit d75151c
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 @@ -50,7 +50,7 @@ const UNICODE_ARRAY: &[(char, &str, char)] = &[
('─', "Box Drawings Light Horizontal", '-'),
('━', "Box Drawings Heavy Horizontal", '-'),
('㇐', "CJK Stroke H", '-'),
('ꟷ', "Latin Epigraphic Letter Dideways", '-'),
('ꟷ', "Latin Epigraphic Letter Sideways I", '-'),
('ᅳ', "Hangul Jungseong Eu", '-'),
('ㅡ', "Hangul Letter Eu", '-'),
('一', "CJK Unified Ideograph-4E00", '-'),
Expand Down

0 comments on commit d75151c

Please sign in to comment.