Skip to content

Commit

Permalink
Fixes mermaid diagram.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnymatthews committed Jan 6, 2025
1 parent 01a7c9c commit e179cac
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions content/concepts/programs.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ As a simple example, a program could be designed to check the length of a messag

```mermaid
flowchart LR
A[Entropy account]
B{Length > 10}
C[Signing nodes]
D[Fail]
E[Success]
A --> | send message | B
B -- true --> E
E --> | generate signature | C
C --> | valid signature | A
B -- false --> D
A[Entropy account]
B{Length > 10}
C[Signing nodes]
D[Fail]
E[Success]
A --> | send message | B
B -- true --> E
E --> | generate signature | C
C --> | valid signature | A
B -- false --> D
```

{{< callout "info" >}}
Expand Down

0 comments on commit e179cac

Please sign in to comment.