We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c85d8e commit fc8a3d5Copy full SHA for fc8a3d5
src/training/validate_myanmar.cpp
@@ -135,8 +135,7 @@ bool ValidateMyanmar::ConsumeOptionalSignsIfPresent() {
135
/* static */
136
bool ValidateMyanmar::IsMyanmarLetter(char32 ch) {
137
return (0x1000 <= ch && ch <= 0x102a) || ch == 0x103f ||
138
- (0x104c <= ch && ch <= 0x104f) ||
139
- (0x1050 <= ch && ch <= 0x1055) || (0x105a <= ch && ch <= 0x105d) ||
+ (0x104c <= ch && ch <= 0x1055) || (0x105a <= ch && ch <= 0x105d) ||
140
ch == 0x1061 || ch == 0x1065 || ch == 0x1066 ||
141
(0x106e <= ch && ch <= 0x1070) || (0x1075 <= ch && ch <= 0x1080) ||
142
ch == 0x108e || (0xa9e0 <= ch && ch <= 0xa9ef) ||
0 commit comments