Skip to content

Commit a95dbab

Browse files
committed
Fix spelling
1 parent 5fe7948 commit a95dbab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: utils/GYBUnicodeDataUtils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class GraphemeClusterBreakPropertyTable(UnicodeProperty):
4141
# Note: Numeric values should be consistent with
4242
# '_GraphemeClusterBreakPropertyValue' enum on the Swift side, and with
4343
# 'GraphemeClusterBreakProperty' in the compiler C++ code. If there is a
44-
# reason for eithor of those to differ, then this mapping can be overriden
44+
# reason for either of those to differ, then this mapping can be overridden
4545
# after an instance of this class is created.
4646
numeric_value_table = {
4747
'Other': 0,
@@ -270,7 +270,7 @@ def create_tables(self):
270270
[ j for j in range(i << self.supp_second_level_index_bits, (i + 1) << self.supp_second_level_index_bits) ]
271271
for i in range(0, self.supp_first_level_index_max + 1) ]
272272

273-
# An arry of supp data blocks.
273+
# An array of supp data blocks.
274274
self.supp_data = [
275275
[ -1 for i in range(0, 1 << self.supp_data_offset_bits) ]
276276
for i in range(0, (self.supp_first_level_index_max + 1) * (1 << self.supp_second_level_index_bits)) ]

0 commit comments

Comments
 (0)