@@ -58,7 +58,7 @@ socket.on('session', (session) => {
58
58
59
59
```
60
60
61
- ## QUIC Basics
61
+ ## QUIC basics
62
62
63
63
QUIC is a UDP-based network transport protocol that includes built-in security
64
64
via TLS 1.3, flow control, error correction, connection migration,
@@ -84,7 +84,7 @@ Unlike the `net.Socket` and `tls.TLSSocket`, a `QuicSocket` instance cannot be
84
84
directly used by user code at the JavaScript level to send or receive data over
85
85
the network.
86
86
87
- ### Client and Server QuicSessions
87
+ ### Client and server QuicSessions
88
88
89
89
A ` QuicSession ` represents a logical connection between two QUIC endpoints (a
90
90
client and a server). In the JavaScript API, each is represented by the
@@ -212,7 +212,7 @@ session.on('stream', (stream) => {
212
212
});
213
213
```
214
214
215
- #### QuicStream Headers
215
+ #### QuicStream headers
216
216
217
217
Some QUIC application protocols (like HTTP/3) make use of headers.
218
218
@@ -498,7 +498,7 @@ also use explicit scope in addresses, so only packets sent to a multicast
498
498
address without specifying an explicit scope are affected by the most recent
499
499
successful use of this call.
500
500
501
- ##### Examples: IPv6 Outgoing Multicast Interface
501
+ ##### Examples: IPv6 outgoing multicast interface
502
502
<!-- YAML
503
503
added: REPLACEME
504
504
-->
@@ -524,7 +524,7 @@ socket.on('ready', () => {
524
524
});
525
525
```
526
526
527
- ##### Example: IPv4 Outgoing Multicast Interface
527
+ ##### Example: IPv4 outgoing multicast interface
528
528
<!-- YAML
529
529
added: REPLACEME
530
530
-->
@@ -539,7 +539,7 @@ socket.on('ready', () => {
539
539
});
540
540
```
541
541
542
- ##### Call Results
542
+ ##### Call results
543
543
544
544
A call on a socket that is not ready to send or no longer open may throw a
545
545
Not running Error.
@@ -2417,9 +2417,9 @@ added: REPLACEME
2417
2417
2418
2418
Set to ` true ` if the ` QuicStream ` is unidirectional.
2419
2419
2420
- ## Additional Notes
2420
+ ## Additional notes
2421
2421
2422
- ### Custom DNS Lookup Functions
2422
+ ### Custom DNS lookup functions
2423
2423
2424
2424
By default, the QUIC implementation uses the ` dns ` module's
2425
2425
[ promisified version of ` lookup() ` ] [ ] to resolve domains names
0 commit comments