Skip to content

Commit dda873c

Browse files
authored
Merge pull request #546 from okkothejawa/patch-1
Fix typo in index.md (Connecting Peers section of libp2p curriculum)
2 parents 0c7cb99 + 7964064 commit dda873c

File tree

1 file changed

+1
-1
lines changed
  • content/en/curriculum/libp2p/connections

1 file changed

+1
-1
lines changed

content/en/curriculum/libp2p/connections/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ Usually, several protocols are tried during the negotiation, with a preference o
178178

179179
#### Multiplexer
180180

181-
Once the connection is secured, a multiplexer protocol is negotiated. Muxtiplexing means opening up multiple distinct logical streams to a peer on a single connection. For example you may want to interact with a peer on the DHT, but you may also want to ping that peer. Multiplexing lets you do both of these on the same underlying connection.
181+
Once the connection is secured, a multiplexer protocol is negotiated. Multiplexing means opening up multiple distinct logical streams to a peer on a single connection. For example you may want to interact with a peer on the DHT, but you may also want to ping that peer. Multiplexing lets you do both of these on the same underlying connection.
182182

183183
Because the data will be sent over the same connection, we need an abstraction called _stream_. A stream represents the data for a specific protocol in a given connection. Data flowing through the connection is assigned its corresponding _stream id_. In the following example, the streams for two protocols are shown: [rendezvous](https://github.com/libp2p/specs/blob/master/rendezvous/README.md#the-protocol) (with protocol id `/rendezvous/1.0.0`) and [identify](https://github.com/libp2p/specs/blob/master/identify/README.md#overview) (with protocol id `/ipfs/id/1.0.0`).
184184

0 commit comments

Comments
 (0)