diff options
Diffstat (limited to 'stator')
-rw-r--r-- | stator/graph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stator/graph.py b/stator/graph.py index ef81d75..436638b 100644 --- a/stator/graph.py +++ b/stator/graph.py @@ -14,7 +14,7 @@ class StateGraph: automatic_states: ClassVar[Set["State"]] def __init_subclass__(cls) -> None: - # Collect state memebers + # Collect state members cls.states = {} for name, value in cls.__dict__.items(): if name in ["__module__", "__doc__", "states"]: |