Skip to content

Commit

Permalink
Fix Unicode block description
Browse files Browse the repository at this point in the history
  • Loading branch information
tats-u authored and jgm committed Aug 22, 2024
1 parent 922fffb commit 8586ee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utf8.c
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ int cmark_utf8proc_is_CJK(int32_t uc) {
|| (uc >= 0x3040 && uc <= 0x309f) // Hiragana
|| (uc >= 0x30a0 && uc <= 0x30ff) // Katakana
|| (uc >= 0x3100 && uc <= 0x312f) // Bopomofo
|| (uc >= 0x3130 && uc <= 0x318f) // Kanbun
|| (uc >= 0x3130 && uc <= 0x318f) // Hangul Compatibility Jamo
|| (uc >= 0x3190 && uc <= 0x319f) // Kanbun
|| (uc >= 0x31a0 && uc <= 0x31bf) // Bopomofo Extended
|| (uc >= 0x31c0 && uc <= 0x31ef) // CJK Strokes
Expand Down

0 comments on commit 8586ee9

Please sign in to comment.