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;