Skip to content

Commit

Permalink
Fix newline in mermaid diagrams
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardnormier authored Sep 16, 2024
1 parent f5b6244 commit 5d0c110
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ title: Client-side
flowchart LR
subgraph pipeline[Invocation pipeline]
direction LR
di[Deadline\ninterceptor] --> ri[Retry\ninterceptor] --> connection[network\nconnection] --> ri --> di
di[`Deadline\ninterceptor`] --> ri[`Retry\ninterceptor`] --> connection[`network\nconnection`] --> ri --> di
end
client -- request --> di
client -- response --- di
Expand All @@ -97,10 +97,10 @@ title: Server-side
flowchart LR
subgraph pipeline [Dispatch pipeline]
direction LR
lm[Logger\nmiddleware] --> dm[Deadline\nmiddleware] --> service --> dm --> lm
lm[`Logger\nmiddleware`] --> dm[`Deadline\nmiddleware`] --> service --> dm --> lm
end
connection[network\nconnection] -- request --> lm
connection[`network\nconnection`] -- request --> lm
connection -- response --- lm
```

Expand Down

0 comments on commit 5d0c110

Please sign in to comment.