Skip to content

Commit d75151c

Browse files
authored
Rollup merge of rust-lang#62854 - andrewda:fix-unicode-name, r=petrochenkov
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)).
2 parents 16f585c + 1520fab commit d75151c

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
@@ -50,7 +50,7 @@ const UNICODE_ARRAY: &[(char, &str, char)] = &[
5050
('─', "Box Drawings Light Horizontal", '-'),
5151
('━', "Box Drawings Heavy Horizontal", '-'),
5252
('㇐', "CJK Stroke H", '-'),
53-
('ꟷ', "Latin Epigraphic Letter Dideways", '-'),
53+
('ꟷ', "Latin Epigraphic Letter Sideways I", '-'),
5454
('ᅳ', "Hangul Jungseong Eu", '-'),
5555
('ㅡ', "Hangul Letter Eu", '-'),
5656
('一', "CJK Unified Ideograph-4E00", '-'),

0 commit comments

Comments
 (0)