From a8f6eb5e48e6e823b96919bec87843300311caae Mon Sep 17 00:00:00 2001 From: Stan Bondi Date: Thu, 7 Sep 2023 13:12:23 +0400 Subject: [PATCH] fix(diagrams): missing quotes for messaging diagram (#5750) Description --- adds missing quotes for messaging diagram Motivation and Context --- Rendering fails in github How Has This Been Tested? --- What process can a PR reviewer use to test or verify this change? --- Breaking Changes --- - [x] None - [ ] Requires data directory on base node to be deleted - [ ] Requires hard fork - [ ] Other - Please specify --- docs/src/diagrams/comms/inbound_messaging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/diagrams/comms/inbound_messaging.md b/docs/src/diagrams/comms/inbound_messaging.md index 11b5579465..453b83ab6f 100644 --- a/docs/src/diagrams/comms/inbound_messaging.md +++ b/docs/src/diagrams/comms/inbound_messaging.md @@ -15,7 +15,7 @@ flowchart TD A[Start] --> B[1. trigger: Protocol Negotiation /t/msg/0.1] B --> C[2. protocols::messaging::InboundMessaging] C -->|InboundMessage| D[3. Inbound pipeline] - D -->|<threads>| E[4. Inbound DHT middlewares] + D -->|"<threads>"| E[4. Inbound DHT middlewares] E -->|DecryptedDhtMessage| F[5. Pubsub connector] F --o|PeerMessage| G[6. ... Domain subscribers ...] ```