Skip to content

Commit aec1cab

Browse files
committed
spelling: uncategorized
Signed-off-by: Josh Soref <[email protected]>
1 parent de23580 commit aec1cab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/analyze_code_size.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,14 +440,14 @@ def print_summary(self, section_size):
440440
(category[0], category[1], category[2]))
441441
print("%60s: %8d (%6.2f%%)" % ('TOTAL', total_size, float(100)))
442442

443-
def uncatorizedSymbols(self):
443+
def uncategorizedSymbols(self):
444444
category = self.categories.get('Unknown')
445445
if category:
446446
return category.symbols
447447
return None
448448

449449
def print_uncategorizedSymbols(self):
450-
syms = self.uncatorizedSymbols()
450+
syms = self.uncategorizedSymbols()
451451
if syms:
452452
for symbol in syms:
453453
print(symbol.mangled_name + " " + symbol.name + " " +

0 commit comments

Comments
 (0)