From 0c50902b1915337bc08d3654d5440c10d3725b55 Mon Sep 17 00:00:00 2001 From: Haju Schulz Date: Thu, 30 Oct 2025 19:52:19 +0100 Subject: [PATCH] doc: fix cfsm_context diagram * entry -> enter * COntext -> Context * add transition to stste change guard --- doc/cfsm_context.puml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/cfsm_context.puml b/doc/cfsm_context.puml index 085e088..f2cdf8d 100644 --- a/doc/cfsm_context.puml +++ b/doc/cfsm_context.puml @@ -1,15 +1,16 @@ -@startuml CFSM COntext +@startuml CFSM Context + state SomeState state OtherState -SomeState : entry/ entry_operations() +SomeState : enter/ enter_operations() SomeState : process/ cyclic_process_operations() SomeState : leave/ leave_operations() -OtherState : entry/ entry_operations() +OtherState : enter/ enter_operations() OtherState : process/ cyclic_process_operations() OtherState : leave/ leave_operations() -SomeState -r-> OtherState : [Event x] +SomeState -r-> OtherState : [Event x or transition] @enduml \ No newline at end of file