summaryrefslogtreecommitdiff
path: root/doc/api/child_process.md
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-01-10 20:07:01 -0800
committerRich Trott <rtrott@gmail.com>2018-01-17 21:22:53 -0800
commitc6bee70eec91debb6dafeb62b5dafce17a04fddb (patch)
treef26e97140762e85508aedfb52deead56bab2a9e5 /doc/api/child_process.md
parente42708c8e3d2c3917419ba7b536d3bb003b0df97 (diff)
downloadandroid-node-v8-c6bee70eec91debb6dafeb62b5dafce17a04fddb.tar.gz
android-node-v8-c6bee70eec91debb6dafeb62b5dafce17a04fddb.tar.bz2
android-node-v8-c6bee70eec91debb6dafeb62b5dafce17a04fddb.zip
doc: simplify sentences that use "considered"
Change many instances of "x is considered to be y" to "x is y". PR-URL: https://github.com/nodejs/node/pull/18095 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'doc/api/child_process.md')
-rw-r--r--doc/api/child_process.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/child_process.md b/doc/api/child_process.md
index 38c94dbf90..50b5be5473 100644
--- a/doc/api/child_process.md
+++ b/doc/api/child_process.md
@@ -1126,10 +1126,10 @@ process.send({ foo: 'bar', baz: NaN });
Child Node.js processes will have a [`process.send()`][] method of their own that
allows the child to send messages back to the parent.
-There is a special case when sending a `{cmd: 'NODE_foo'}` message. All messages
-containing a `NODE_` prefix in its `cmd` property are considered to be reserved
-for use within Node.js core and will not be emitted in the child's
-[`process.on('message')`][] event. Rather, such messages are emitted using the
+There is a special case when sending a `{cmd: 'NODE_foo'}` message. Messages
+containing a `NODE_` prefix in the `cmd` property are reserved for use within
+Node.js core and will not be emitted in the child's [`process.on('message')`][]
+event. Rather, such messages are emitted using the
`process.on('internalMessage')` event and are consumed internally by Node.js.
Applications should avoid using such messages or listening for
`'internalMessage'` events as it is subject to change without notice.