Skip to content

Commit dfc8bed

Browse files
r-52JungMinu
authored andcommitted
doc: change references from node to Node.js
Some API doc referenced Node.js with "node" or "node.js". This commit replaces these references. PR-URL:#4177 Reviewed-By: Evan Lucas <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Minwoo Jung <[email protected]>
1 parent a7f5dfd commit dfc8bed

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

doc/api/readline.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Resumes the readline `input` stream.
7777
### rl.setPrompt(prompt)
7878

7979
Sets the prompt, for example when you run `node` on the command line, you see
80-
`> `, which is node.js's prompt.
80+
`> `, which is Node.js's prompt.
8181

8282
### rl.write(data[, key])
8383

doc/api/util.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
These functions are in the module `'util'`. Use `require('util')` to
66
access them.
77

8-
The `util` module is primarily designed to support the needs of node.js's
8+
The `util` module is primarily designed to support the needs of Node.js's
99
internal APIs. Many of these utilities are useful for your own
1010
programs. If you find that these functions are lacking for your
1111
purposes, however, you are encouraged to write your own utilities. We
1212
are not interested in any future additions to the `util` module that
13-
are unnecessary for node.js's internal functionality.
13+
are unnecessary for Node.js's internal functionality.
1414

1515
## util.debug(string)
1616

@@ -260,7 +260,7 @@ Returns `true` if the given "object" is a `Boolean`. `false` otherwise.
260260
// false
261261
util.isBoolean(false)
262262
// true
263-
263+
264264
## util.isBuffer(object)
265265

266266
Stability: 0 - Deprecated

doc/api/v8.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Stability: 2 - Stable
44

55
This module exposes events and interfaces specific to the version of [V8][]
6-
built with node.js. These interfaces are subject to change by upstream and are
6+
built with Node.js. These interfaces are subject to change by upstream and are
77
therefore not covered under the stability index.
88

99
## getHeapStatistics()
@@ -27,7 +27,7 @@ Set additional V8 command line flags. Use with care; changing settings
2727
after the VM has started may result in unpredictable behavior, including
2828
crashes and data loss. Or it may simply do nothing.
2929

30-
The V8 options available for a version of node.js may be determined by running
30+
The V8 options available for a version of Node.js may be determined by running
3131
`node --v8-options`. An unofficial, community-maintained list of options
3232
and their effects is available [here][].
3333

0 commit comments

Comments
 (0)