summaryrefslogtreecommitdiffstats
path: root/stator/graph.py
diff options
context:
space:
mode:
Diffstat (limited to 'stator/graph.py')
-rw-r--r--stator/graph.py2
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"]: