From 6418b939e368755f9146c0fb0f1c7093c5e6c1fb Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 1 Dec 2019 22:12:44 -0800 Subject: [PATCH] doc: remove usage of "Node" in favor of "Node.js" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In accordance with the Style Guide, remove "Node" in favor of "Node.js". A lint rule for this is forthcoming. PR-URL: https://github.com/nodejs/node/pull/30758 Reviewed-By: Jiawen Geng Reviewed-By: Michaël Zasso Reviewed-By: David Carlier Reviewed-By: Beth Griggs Reviewed-By: Ruben Bridgewater Reviewed-By: James M Snell Reviewed-By: Colin Ihrig Reviewed-By: Richard Lau Reviewed-By: Trivikram Kamat Reviewed-By: Luigi Pinca --- SECURITY.md | 4 ++-- doc/STYLE_GUIDE.md | 2 +- doc/api/fs.md | 8 ++++---- doc/guides/contributing/pull-requests.md | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index 7e984b7ba36872..3196055ccb78e5 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -23,8 +23,8 @@ the HackerOne platform. See for further details. ## Reporting a Bug in a third party module Security bugs in third party modules should be reported to their respective -maintainers and should also be coordinated through the Node Ecosystem Security -Team via [HackerOne](https://hackerone.com/nodejs-ecosystem). +maintainers and should also be coordinated through the Node.js Ecosystem +Security Team via [HackerOne](https://hackerone.com/nodejs-ecosystem). Details regarding this process can be found in the [Security Working Group repository](https://github.com/nodejs/security-wg/blob/master/processes/third_party_vuln_process.md). diff --git a/doc/STYLE_GUIDE.md b/doc/STYLE_GUIDE.md index 6f98ad1fc8fb4e..9784787428dbf1 100644 --- a/doc/STYLE_GUIDE.md +++ b/doc/STYLE_GUIDE.md @@ -55,9 +55,9 @@ * OK: JavaScript, Google's V8 * NOT OK: Javascript, Google's v8 - * Use _Node.js_ and not _Node_, _NodeJS_, or similar variants. + * When referring to the executable, _`node`_ is acceptable. See also API documentation structure overview in [doctools README][]. diff --git a/doc/api/fs.md b/doc/api/fs.md index 1d8508757b5c4f..cfcb2a32dbb161 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -3473,10 +3473,10 @@ completion callback. The `type` argument is only available on Windows and ignored on other platforms. It can be set to `'dir'`, `'file'`, or `'junction'`. If the `type` argument is -not set, Node will autodetect `target` type and use `'file'` or `'dir'`. If the -`target` does not exist, `'file'` will be used. Windows junction points require -the destination path to be absolute. When using `'junction'`, the `target` -argument will automatically be normalized to absolute path. +not set, Node.js will autodetect `target` type and use `'file'` or `'dir'`. If +the `target` does not exist, `'file'` will be used. Windows junction points +require the destination path to be absolute. When using `'junction'`, the +`target` argument will automatically be normalized to absolute path. Relative targets are relative to the link’s parent directory. diff --git a/doc/guides/contributing/pull-requests.md b/doc/guides/contributing/pull-requests.md index 31e3ba64757c12..cabc548be02556 100644 --- a/doc/guides/contributing/pull-requests.md +++ b/doc/guides/contributing/pull-requests.md @@ -49,7 +49,7 @@ In case of doubt, open an issue in the Node.js has two IRC channels: [#Node.js](https://webchat.freenode.net/?channels=node.js) for general help and questions, and -[#Node-dev](https://webchat.freenode.net/?channels=node-dev) for development of +[#node-dev](https://webchat.freenode.net/?channels=node-dev) for development of Node.js core specifically. ## Setting up your local environment