spelling: clazz

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2022-04-17 16:31:59 -04:00
committed by Josh Soref
parent a296687335
commit a653225c07

View File

@@ -131,7 +131,7 @@ def defineRandomNominalType(name, depth=0):
print("}")
print()
def clas():
def clazz():
defineRandomClass(name, depth)
def enum():
@@ -145,7 +145,7 @@ def defineRandomNominalType(name, depth=0):
print("}")
print()
kinds = [struct, clas, enum]
kinds = [struct, clazz, enum]
return random.choice(kinds)()