diff --git a/docs/adding-a-store.md b/docs/adding-a-store.md index 35c279f..4e04fa2 100644 --- a/docs/adding-a-store.md +++ b/docs/adding-a-store.md @@ -243,7 +243,7 @@ No component, no DOM, no async — just data in, data out. ```mermaid flowchart LR - View["View\n(template event)"] -->|dispatch(Msg)| Dispatch["store.dispatch"] + View["View\n(template event)"] -->|"dispatch(Msg)"| Dispatch["store.dispatch"] Dispatch --> Reduce["reduce(state, Msg)"] Reduce -->|"new state"| Signal["state signal .set()"] Signal -->|"state() read in template"| View