Skip to content

Commit

Permalink
doc: change references from node to Node.js
Browse files Browse the repository at this point in the history
Some API doc referenced Node.js with "node" or "node.js". This commit
replaces these references.

PR-URL:#4177
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Minwoo Jung <jmwsoft@gmail.com>
  • Loading branch information
r-52 authored and JungMinu committed Dec 9, 2015
1 parent a7f5dfd commit dfc8bed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doc/api/readline.markdown
Expand Up @@ -77,7 +77,7 @@ Resumes the readline `input` stream.
### rl.setPrompt(prompt)

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

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

Expand Down
6 changes: 3 additions & 3 deletions doc/api/util.markdown
Expand Up @@ -5,12 +5,12 @@
These functions are in the module `'util'`. Use `require('util')` to
access them.

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

## util.debug(string)

Expand Down Expand Up @@ -260,7 +260,7 @@ Returns `true` if the given "object" is a `Boolean`. `false` otherwise.
// false
util.isBoolean(false)
// true

## util.isBuffer(object)

Stability: 0 - Deprecated
Expand Down
4 changes: 2 additions & 2 deletions doc/api/v8.markdown
Expand Up @@ -3,7 +3,7 @@
Stability: 2 - Stable

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

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

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

Expand Down

2 comments on commit dfc8bed

@Fishrock123
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JungMinu minor nit: space between PR-URL: and the URL please :D

@JungMinu
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Fishrock123 Sorry, I will keep it mind

Please sign in to comment.