Skip to content

Commit

Permalink
fix(diagrams): missing quotes for protocol negotiation diagram (#5751)
Browse files Browse the repository at this point in the history
Description
---
adds missing quotes for protocol negotiation diagram

Motivation and Context
---

How Has This Been Tested?
---

What process can a PR reviewer use to test or verify this change?
---

<!-- Checklist -->
<!-- 1. Is the title of your PR in the form that would make nice release
notes? The title, excluding the conventional commit
tag, will be included exactly as is in the CHANGELOG, so please think
about it carefully. -->


Breaking Changes
---

- [x] None
- [ ] Requires data directory on base node to be deleted
- [ ] Requires hard fork
- [ ] Other - Please specify

<!-- Does this include a breaking change? If so, include this line as a
footer -->
<!-- BREAKING CHANGE: Description what the user should do, e.g. delete a
database, resync the chain -->
  • Loading branch information
sdbondi authored Sep 7, 2023
1 parent d2a0c8c commit 45c20a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/diagrams/comms/protocol_negotiation.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Messages are the tuple (length (u8), flags (u8), protocol_name (variable 255 (0x
flowchart TD
A[Start] --> B[1. New substream opened by remote peer]
B --> C[2. PeerConnection starts ProtocolNegotiation]
C --> D[3.⌛️ Inbound ProtocolNegotiation waits for bytes to read]
C --> D["3.⌛️ Inbound ProtocolNegotiation waits for bytes to read"]
D --> E["4. Read frame (len, flags, protocol_name)"]
%% Optimistic
Expand Down

0 comments on commit 45c20a3

Please sign in to comment.