From b8dee4540a3273a96882a759ba02ef43c4bd4150 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 12 Jan 2020 07:21:37 -0800 Subject: [PATCH] doc: standardize on "host name" in dgram.md Our docs have a mix of "hostname" and "host name" in prose. Let's follow the usage of Unix man pages, RFCs, and most professionally-edited sources, and use "host name" in prose and "hostname" to refer to the command and in code. Lint rule forthcoming. PR-URL: https://github.com/nodejs/node/pull/31326 Refs: https://github.com/nodejs/node/pull/31073 Reviewed-By: Luigi Pinca Reviewed-By: Richard Lau Reviewed-By: James M Snell Reviewed-By: Trivikram Kamat --- 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 dc82f6dc581f25..d3eee26cdd5ac0 100644 --- a/doc/api/dgram.md +++ b/doc/api/dgram.md @@ -400,7 +400,7 @@ changes: * `offset` {integer} Offset in the buffer where the message starts. * `length` {integer} Number of bytes in the message. * `port` {integer} Destination port. -* `address` {string} Destination hostname or IP address. +* `address` {string} Destination host name or IP address. * `callback` {Function} Called when the message has been sent. Broadcasts a datagram on the socket.