From a0669369628d3523246f6f55665bbda58138529b Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Tue, 12 Dec 2023 16:39:56 +0100 Subject: [PATCH] Update README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- flow/examples/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flow/examples/README.md b/flow/examples/README.md index 1654764..9a15998 100644 --- a/flow/examples/README.md +++ b/flow/examples/README.md @@ -101,10 +101,10 @@ while counter < counter_max:
     flowchart TD
     start([Start]) --> inputa[/"Input integer a"/] --> Condition1{"a < 1"}
-    Condition1 -- Yes --> print1[/"print condition 1"/]
+    Condition1 -- Yes --> Action1[/"print condition 1"/]
     Condition1 -- No --> Condition2{"a == 2"}
-    Condition2 -- Yes --> print2[/"print condition 2"/]
-    Condition2 -- No --> print3[/"print condition else"/]
+    Condition2 -- Yes --> Action2[/"print condition 2"/]
+    Condition2 -- No --> ElseAction[/"print condition else"/]
     Action1 --> stop([Stop])
     Action2 --> stop
     ElseAction --> stop