Skip to content

Commit 2c30920

Browse files
committed
doc: use sentence-case in quic.md headers
For consistency with the rest of our docs and our style guide, use sentence-case rather than headline-case in the headers in quic.md. PR-URL: #34453 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent 459d3a0 commit 2c30920

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

doc/api/quic.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ socket.on('session', (session) => {
5858

5959
```
6060

61-
## QUIC Basics
61+
## QUIC basics
6262

6363
QUIC is a UDP-based network transport protocol that includes built-in security
6464
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
8484
directly used by user code at the JavaScript level to send or receive data over
8585
the network.
8686

87-
### Client and Server QuicSessions
87+
### Client and server QuicSessions
8888

8989
A `QuicSession` represents a logical connection between two QUIC endpoints (a
9090
client and a server). In the JavaScript API, each is represented by the
@@ -212,7 +212,7 @@ session.on('stream', (stream) => {
212212
});
213213
```
214214

215-
#### QuicStream Headers
215+
#### QuicStream headers
216216

217217
Some QUIC application protocols (like HTTP/3) make use of headers.
218218

@@ -498,7 +498,7 @@ also use explicit scope in addresses, so only packets sent to a multicast
498498
address without specifying an explicit scope are affected by the most recent
499499
successful use of this call.
500500

501-
##### Examples: IPv6 Outgoing Multicast Interface
501+
##### Examples: IPv6 outgoing multicast interface
502502
<!-- YAML
503503
added: REPLACEME
504504
-->
@@ -524,7 +524,7 @@ socket.on('ready', () => {
524524
});
525525
```
526526

527-
##### Example: IPv4 Outgoing Multicast Interface
527+
##### Example: IPv4 outgoing multicast interface
528528
<!-- YAML
529529
added: REPLACEME
530530
-->
@@ -539,7 +539,7 @@ socket.on('ready', () => {
539539
});
540540
```
541541

542-
##### Call Results
542+
##### Call results
543543

544544
A call on a socket that is not ready to send or no longer open may throw a
545545
Not running Error.
@@ -2417,9 +2417,9 @@ added: REPLACEME
24172417

24182418
Set to `true` if the `QuicStream` is unidirectional.
24192419

2420-
## Additional Notes
2420+
## Additional notes
24212421

2422-
### Custom DNS Lookup Functions
2422+
### Custom DNS lookup functions
24232423

24242424
By default, the QUIC implementation uses the `dns` module's
24252425
[promisified version of `lookup()`][] to resolve domains names

0 commit comments

Comments
 (0)