summaryrefslogtreecommitdiffstats
path: root/stator
diff options
context:
space:
mode:
authorKian-Meng Ang2022-11-25 12:30:21 +0800
committerGitHub2022-11-24 21:30:21 -0700
commitdf5493dd2a9a884660ee2a491377237071493c76 (patch)
tree29f02baeccc1883a677f3f445df64eb6f07c02e8 /stator
parent786d6190f856fddb32157764717f871c6f8cb3fa (diff)
downloadtakahe-df5493dd2a9a884660ee2a491377237071493c76.tar.gz
takahe-df5493dd2a9a884660ee2a491377237071493c76.tar.bz2
takahe-df5493dd2a9a884660ee2a491377237071493c76.zip
Fix typos
Found via `codespell -S ./static -L keypair`
Diffstat (limited to 'stator')
-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"]: