Skip to content

Commit 82bf7a7

Browse files
committed
tables: fix lower latin a with acute
Should be a lower case a, not an upper case a.
1 parent 89df4db commit 82bf7a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tables.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ static CODE_MAP_TABLE: [CodeMap; 97] = [
642642
code_map_single_byte!(0x27, Code::Apostrophe, Some('\'')),
643643
code_map_single_byte!(0x28, Code::LeftParenthesis, Some('(')),
644644
code_map_single_byte!(0x29, Code::RightParenthesis, Some(')')),
645-
code_map_single_byte!(0x2A, Code::LatinLowerAWithAcute, Some('Á')),
645+
code_map_single_byte!(0x2A, Code::LatinLowerAWithAcute, Some('á')),
646646
//code_map_single_byte!(0x2A, Code::Asterisk, Some('*')),
647647
code_map_single_byte!(0x2B, Code::PlusSign, Some('+')),
648648
code_map_single_byte!(0x2C, Code::Comma, Some(',')),

0 commit comments

Comments
 (0)