spelling: instantiate

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 11:59:52 -05:00
parent 24dd728cf1
commit ec3d12929e

View file

@ -31,7 +31,7 @@ class ResourceGeneratorMetaclass(type):
if cls.type:
_ResourceGenerators[cls.type] = cls
# Instatiate the metaclass into a baseclass we can use elsewhere.
# Instantiate the metaclass into a baseclass we can use elsewhere.
ResourceGeneratorBase = ResourceGeneratorMetaclass('ResourceGenerator', (object,), {})