Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed io.js references in process.markdown #2846

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/api/process.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ parent process using `process.send()`. Each will be received as a
['message'](child_process.html#child_process_event_message)
event on the parent's `ChildProcess` object.

If io.js was not spawned with an IPC channel, `process.send()` will be undefined.
If Node.js was not spawned with an IPC channel, `process.send()` will be undefined.


## process.disconnect()
Expand All @@ -935,7 +935,7 @@ gracefully once there are no other connections keeping it alive.
Identical to the parent process's
[ChildProcess.disconnect()](child_process.html#child_process_child_disconnect).

If io.js was not spawned with an IPC channel, `process.disconnect()` will be
If Node.js was not spawned with an IPC channel, `process.disconnect()` will be
undefined.


Expand Down