From abb2a4b8fe545964979525a330b9533d9a8cfbd5 Mon Sep 17 00:00:00 2001 From: Tristian Flanagan Date: Sun, 13 Sep 2015 11:09:32 -0400 Subject: [PATCH] doc: fixed io.js references in process.markdown Reviewed-By: Jeremiah Senkpiel Reviewed-By: Sam Roberts PR-URL: https://github.com/nodejs/node/pull/2846 --- doc/api/process.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/process.markdown b/doc/api/process.markdown index 2bb533718261d2..c1393846e827cf 100644 --- a/doc/api/process.markdown +++ b/doc/api/process.markdown @@ -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() @@ -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.