Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Atkinson <atkinson.tommy@nsoft.com>2020-09-16 17:38:46 +0300
committerNode.js GitHub Bot <github-bot@iojs.org>2020-09-16 19:21:45 +0300
commitd4aac8399247ceb57cc517cb51ccdb24696ab4b5 (patch)
tree9d846f8c2fc29d0b9935ca708ad414d15901af81 /doc/api/dgram.md
parentdfa2dada07ce5804d392f6ed0f8ff1503e530ce1 (diff)
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 <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Diffstat (limited to 'doc/api/dgram.md')
-rw-r--r--doc/api/dgram.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/dgram.md b/doc/api/dgram.md
index 57afbe6135c..53f3e330a6a 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.