Skip to content

Commit c67931a

Browse files
committed
include Kana in Asian
1 parent 5bf5364 commit c67931a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/mission.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ pub const UBF_AFRICAN: u64 = 0x0000_0000_ffe0_0000;
130130
/// #[allow(dead_code)]
131131
pub const UBF_COMMON: u64 = 0x0000_0000_ffff_fffc;
132132
/// Unicode-block-filter:
133-
/// CJK: (U+4000..), Asian: (U+A000..), Hangul: (U+B000..U+E000).
133+
/// Kana: (U+3000..), CJK: (U+4000..), Asian: (U+A000..), Hangul: (U+B000..U+E000).
134134
#[allow(dead_code)]
135-
pub const UBF_ASIAN: u64 = 0x0000_3ff8_0000_0000;
135+
pub const UBF_ASIAN: u64 = 0x0000_3ffc_0000_0000;
136136
/// Unicode-block-filter:
137137
/// Private use area (U+E00..F00), (U+10_0000..U+14_0000).
138138
#[allow(dead_code)]
@@ -159,7 +159,7 @@ pub const UNICODE_BLOCK_FILTER_ALIASSE: [([u8; 12], u64, [u8; 25]); 14] = [
159159
(
160160
*b"all ",
161161
UBF_ALL & !UBF_INVALID,
162-
*b"all valid mulitbyte UTF-8",
162+
*b"all valid multibyte UTF-8",
163163
),
164164
(*b"none ", !UBF_ALL, *b"block all multibyte UTF-8"),
165165
(

0 commit comments

Comments
 (0)