From d4aac8399247ceb57cc517cb51ccdb24696ab4b5 Mon Sep 17 00:00:00 2001 From: Tom Atkinson Date: Wed, 16 Sep 2020 16:38:46 +0200 Subject: [PATCH] doc: fix missing word in dgram.md The word "cannot" is missing from this sentence PR-URL: https://github.com/nodejs/node/pull/35231 Reviewed-By: Richard Lau Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig Reviewed-By: Daijiro Wachi --- doc/api/dgram.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/dgram.md b/doc/api/dgram.md index 57afbe6135ce97..53f3e330a6aa82 100644 --- a/doc/api/dgram.md +++ b/doc/api/dgram.md @@ -524,7 +524,7 @@ The maximum size of an `IPv4/v6` datagram depends on the `MTU` (_Maximum Transmission Unit_) and on the `Payload Length` field size. * The `Payload Length` field is `16 bits` wide, which means that a normal - payload exceed 64K octets _including_ the internet header and data + payload cannot exceed 64K octets _including_ the internet header and data (65,507 bytes = 65,535 − 8 bytes UDP header − 20 bytes IP header); this is generally true for loopback interfaces, but such long datagram messages are impractical for most hosts and networks.