Skip to content

Commit

Permalink
don't use parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciogoldchluk-yolo committed Jul 31, 2024
1 parent 5739764 commit d01aad4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,9 @@ The library is available as open source under the terms of the [MIT License](htt
```mermaid
graph TD;
A[ApplicationSupervisor] --> B[ConsumerSupervisor];
A --> C[ConnectionServer (GenServer)];
A --> C[ConnectionServer - GenServer];
C -- sends requests to start consumers --> B;
B -- dynamic supervisor of multiple -->D[ConsumerServer (GenServer)];
B -- dynamic supervisor of multiple -->D[ConsumerServer - GenServer];
D -- monitors --> E[ConsumerExecutor];
E -- sends messages to --> C;
```

0 comments on commit d01aad4

Please sign in to comment.