From b17475f013097c064d554df44c9a8f725bb6c2a7 Mon Sep 17 00:00:00 2001 From: Marc Faber Date: Thu, 30 Jul 2020 01:18:58 +0200 Subject: [PATCH] #1366 Flowchart documentation: Fix code example for styling nodes --- docs/flowchart.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/flowchart.md b/docs/flowchart.md index 115f2a24b..e9a9021b3 100644 --- a/docs/flowchart.md +++ b/docs/flowchart.md @@ -640,13 +640,13 @@ It is possible to apply specific styles such as a thicker border or a different graph LR id1(Start)-->id2(Stop) style id1 fill:#f9f,stroke:#333,stroke-width:4px - style id2 fill:#bbf,stroke:#f66,stroke-width:2px,color:#fff,stroke-dasharray: 5, 5 + style id2 fill:#bbf,stroke:#f66,stroke-width:2px,color:#fff,stroke-dasharray: 5 5 ``` ```mermaid graph LR id1(Start)-->id2(Stop) style id1 fill:#f9f,stroke:#333,stroke-width:4px - style id2 fill:#bbf,stroke:#f66,stroke-width:2px,color:#fff,stroke-dasharray: 5, 5 + style id2 fill:#bbf,stroke:#f66,stroke-width:2px,color:#fff,stroke-dasharray: 5 5 ```