From a95dbabb34455f910bf0fe59a7a1c2ef89b216f1 Mon Sep 17 00:00:00 2001 From: Julian Yap Date: Thu, 3 Dec 2015 10:49:19 -1000 Subject: [PATCH] Fix spelling --- utils/GYBUnicodeDataUtils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/GYBUnicodeDataUtils.py b/utils/GYBUnicodeDataUtils.py index 640e7d64d28d5..37004d78671b8 100644 --- a/utils/GYBUnicodeDataUtils.py +++ b/utils/GYBUnicodeDataUtils.py @@ -41,7 +41,7 @@ class GraphemeClusterBreakPropertyTable(UnicodeProperty): # Note: Numeric values should be consistent with # '_GraphemeClusterBreakPropertyValue' enum on the Swift side, and with # 'GraphemeClusterBreakProperty' in the compiler C++ code. If there is a - # reason for eithor of those to differ, then this mapping can be overriden + # reason for either of those to differ, then this mapping can be overridden # after an instance of this class is created. numeric_value_table = { 'Other': 0, @@ -270,7 +270,7 @@ def create_tables(self): [ j for j in range(i << self.supp_second_level_index_bits, (i + 1) << self.supp_second_level_index_bits) ] for i in range(0, self.supp_first_level_index_max + 1) ] - # An arry of supp data blocks. + # An array of supp data blocks. self.supp_data = [ [ -1 for i in range(0, 1 << self.supp_data_offset_bits) ] for i in range(0, (self.supp_first_level_index_max + 1) * (1 << self.supp_second_level_index_bits)) ]