summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-10-29 22:04:25 -0700
committerRich Trott <rtrott@gmail.com>2018-10-31 23:26:51 -0700
commit03f52524e413d5ec7fbb1aec4b63b4e262537021 (patch)
tree51d1e962ceaaf2ae0c74ab72676e19962cc60725 /doc/api
parent51294c897f2836e3dd9e0b99319eec5a1df9e269 (diff)
downloadandroid-node-v8-03f52524e413d5ec7fbb1aec4b63b4e262537021.tar.gz
android-node-v8-03f52524e413d5ec7fbb1aec4b63b4e262537021.tar.bz2
android-node-v8-03f52524e413d5ec7fbb1aec4b63b4e262537021.zip
doc: use Node.js instead of Node
Per branding guidelines from the Foundation, use Node.js and not Node. PR-URL: https://github.com/nodejs/node/pull/23967 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Matheus Marchini <mat@mmarchini.me> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/cli.md2
-rw-r--r--doc/api/documentation.md2
-rw-r--r--doc/api/inspector.md2
-rw-r--r--doc/api/modules.md5
4 files changed, 6 insertions, 5 deletions
diff --git a/doc/api/cli.md b/doc/api/cli.md
index b6e42a5bc8..4b8ce93736 100644
--- a/doc/api/cli.md
+++ b/doc/api/cli.md
@@ -553,7 +553,7 @@ if they had been specified on the command line before the actual command line
(so they can be overridden). Node.js will exit with an error if an option
that is not allowed in the environment is used, such as `-p` or a script file.
-Node options that are allowed are:
+Node.js options that are allowed are:
- `--enable-fips`
- `--experimental-modules`
- `--experimental-repl-await`
diff --git a/doc/api/documentation.md b/doc/api/documentation.md
index afad0e653e..a1b0d5903b 100644
--- a/doc/api/documentation.md
+++ b/doc/api/documentation.md
@@ -82,7 +82,7 @@ pages (short for manual pages) which describe how the syscalls work.
Most Unix syscalls have Windows equivalents, but behavior may differ on Windows
relative to Linux and macOS. For an example of the subtle ways in which it's
-sometimes impossible to replace Unix syscall semantics on Windows, see [Node
+sometimes impossible to replace Unix syscall semantics on Windows, see [Node.js
issue 4760](https://github.com/nodejs/node/issues/4760).
[`'warning'`]: process.html#process_event_warning
diff --git a/doc/api/inspector.md b/doc/api/inspector.md
index 92fcb0e03f..02aa1ac141 100644
--- a/doc/api/inspector.md
+++ b/doc/api/inspector.md
@@ -144,7 +144,7 @@ session.post('Runtime.evaluate', { expression: '2 + 2' },
The latest version of the V8 inspector protocol is published on the
[Chrome DevTools Protocol Viewer][].
-Node inspector supports all the Chrome DevTools Protocol domains declared
+Node.js inspector supports all the Chrome DevTools Protocol domains declared
by V8. Chrome DevTools Protocol domain provides an interface for interacting
with one of the runtime agents used to inspect the application state and listen
to the run-time events.
diff --git a/doc/api/modules.md b/doc/api/modules.md
index 2475fa2755..c7d9d4b59c 100644
--- a/doc/api/modules.md
+++ b/doc/api/modules.md
@@ -376,8 +376,9 @@ Error: Cannot find module 'some-library'
If the module identifier passed to `require()` is not a
[core](#modules_core_modules) module, and does not begin with `'/'`, `'../'`, or
`'./'`, then Node.js starts at the parent directory of the current module, and
-adds `/node_modules`, and attempts to load the module from that location. Node
-will not append `node_modules` to a path already ending in `node_modules`.
+adds `/node_modules`, and attempts to load the module from that location.
+Node.js will not append `node_modules` to a path already ending in
+`node_modules`.
If it is not found there, then it moves to the parent directory, and so
on, until the root of the file system is reached.