From 64707e75c83e4ef5a05b3cc31f18da9a2d8e15ff Mon Sep 17 00:00:00 2001 From: medusa Date: Sun, 18 Feb 2024 22:56:36 +0000 Subject: [PATCH] Update docs/random_docs/Mermaid.md --- docs/random_docs/Mermaid.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/random_docs/Mermaid.md b/docs/random_docs/Mermaid.md index 0356811..9ba5a4e 100644 --- a/docs/random_docs/Mermaid.md +++ b/docs/random_docs/Mermaid.md @@ -16,7 +16,7 @@ Mermaid diagrams are defined using a special syntax code block in Markdown files ```mermaid graph TD; - A-->B; + Jason-->Melodi; A-->C; B-->D; C-->D; @@ -35,7 +35,7 @@ Create flowcharts to visualize processes and workflows. ```mermaid graph LR; A[Start] --> B{Decision}; - B -->|Yes| C[Do Something]; + B -->|Yes| C[Do Something with Melodi]; B -->|No| D[Do Something Else]; C --> E[End]; D --> E;