Skip to content

Commit 468551e

Browse files
committed
fix typo
1 parent 7fee203 commit 468551e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/unicode-data.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2311,7 +2311,7 @@ const std::unordered_set<uint32_t> unicode_set_whitespace = {
23112311
0x003000,
23122312
};
23132313

2314-
// list is always in ascending order, to enable binary searh
2314+
// list is always in ascending order, to enable binary search
23152315
const std::initializer_list<std::pair<uint32_t, uint32_t>> unicode_map_lowercase = {
23162316
{0x000041, 0x000061},
23172317
{0x000042, 0x000062},
@@ -3748,7 +3748,7 @@ const std::initializer_list<std::pair<uint32_t, uint32_t>> unicode_map_lowercase
37483748
{0x01E921, 0x01E943},
37493749
};
37503750

3751-
// list is always in ascending order, to enable binary searh
3751+
// list is always in ascending order, to enable binary search
37523752
const std::initializer_list<std::pair<uint32_t, uint32_t>> unicode_map_uppercase = {
37533753
{0x000061, 0x000041},
37543754
{0x000062, 0x000042},

0 commit comments

Comments
 (0)