diff --git a/compiler/table.v b/compiler/table.v index 36131774b1..6fd52f62d6 100644 --- a/compiler/table.v +++ b/compiler/table.v @@ -238,7 +238,7 @@ fn new_table(obfuscate bool) &Table { t.register_type('size_t') t.register_type_with_parent('i8', 'int') t.register_type_with_parent('byte', 'int') - t.register_type_with_parent('char', 'int') // for C functinos only, to avoid warnings + t.register_type_with_parent('char', 'int') // for C functions only, to avoid warnings t.register_type_with_parent('i16', 'int') t.register_type_with_parent('u16', 'u32') t.register_type_with_parent('u32', 'int')