From 278442eacb907537b2d9c5c718cde3bba095af84 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 12 Jan 2020 07:28:26 -0800 Subject: [PATCH] doc: standardize on "host name" in https.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/https.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/https.md b/doc/api/https.md index 58741ba04f7e01..f6e7b88a67e29c 100644 --- a/doc/api/https.md +++ b/doc/api/https.md @@ -39,7 +39,7 @@ changes: * `servername` {string} the value of [Server Name Indication extension][sni wiki] to be sent to the server. Use empty string `''` to disable sending the extension. - **Default:** hostname of the target server, unless the target server + **Default:** host name of the target server, unless the target server is specified using an IP address, in which case the default is `''` (no extension).