From 9208e7faafa74e63b34884b4527fa7b3edb1a052 Mon Sep 17 00:00:00 2001 From: nour kouider Date: Fri, 4 Apr 2025 18:22:56 +0100 Subject: [PATCH] fix(docs): fix edge ID example --- docs/syntax/flowchart.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/syntax/flowchart.md b/docs/syntax/flowchart.md index 40ee2ef63..2e1a25b36 100644 --- a/docs/syntax/flowchart.md +++ b/docs/syntax/flowchart.md @@ -1229,13 +1229,13 @@ In the initial version, two animation speeds are supported: `fast` and `slow`. S ```mermaid-example flowchart LR - A e1@–> B + A e1@–-> B e1@{ animation: fast } ``` ```mermaid flowchart LR - A e1@–> B + A e1@–-> B e1@{ animation: fast } ``` @@ -1247,14 +1247,14 @@ You can also animate edges by assigning a class to them and then defining animat ```mermaid-example flowchart LR - A e1@–> B + A e1@–-> B classDef animate stroke-dasharray: 9,5,stroke-dashoffset: 900,animation: dash 25s linear infinite; class e1 animate ``` ```mermaid flowchart LR - A e1@–> B + A e1@–-> B classDef animate stroke-dasharray: 9,5,stroke-dashoffset: 900,animation: dash 25s linear infinite; class e1 animate ```