From cd2466bc24519e00079855ceed27432be6bad166 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Tue, 12 Dec 2023 16:29:06 +0100 Subject: [PATCH] Update README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- flow/examples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flow/examples/README.md b/flow/examples/README.md index b2d0968..e438620 100644 --- a/flow/examples/README.md +++ b/flow/examples/README.md @@ -70,7 +70,7 @@ print(c) {% raw %}
flowchart TD - start([Start]) --> inita{{"counter ← 0"}} --> inita{{"counter_max ← 100"}} --> Condition{"counter < counter_max"} + start([Start]) --> initcounter{{"counter ← 0"}} --> initcountermax{{"counter_max ← 100"}} --> Condition{"counter < counter_max"} Condition -- Yes --> printcounter[/"print counter"/] --> Action["counter ← counter + 1"] Action --> Condition Condition -- No --> End(End)