From 9741df30ab62dbaed16cf71762f5cdd5bb99b3cf Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Mon, 16 Sep 2024 18:23:52 -0400 Subject: [PATCH] Fix a typo. --- fsm.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsm.hpp b/fsm.hpp index 28dcddd..5898ea4 100644 --- a/fsm.hpp +++ b/fsm.hpp @@ -18,7 +18,7 @@ public: template void event(E event, Types... args); - void state(S next_state) + void state(S next_state) { _state = next_state; }