File tree 4 files changed +8
-9
lines changed
4 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -1124,10 +1124,10 @@ process.send({ foo: 'bar', baz: NaN });
1124
1124
Child Node.js processes will have a [ ` process.send() ` ] [ ] method of their own that
1125
1125
allows the child to send messages back to the parent.
1126
1126
1127
- There is a special case when sending a ` {cmd: 'NODE_foo'} ` message. All messages
1128
- containing a ` NODE_ ` prefix in its ` cmd ` property are considered to be reserved
1129
- for use within Node.js core and will not be emitted in the child's
1130
- [ ` process.on('message') ` ] [ ] event. Rather, such messages are emitted using the
1127
+ There is a special case when sending a ` {cmd: 'NODE_foo'} ` message. Messages
1128
+ containing a ` NODE_ ` prefix in the ` cmd ` property are reserved for use within
1129
+ Node.js core and will not be emitted in the child's [ ` process.on('message') ` ] [ ]
1130
+ event. Rather, such messages are emitted using the
1131
1131
` process.on('internalMessage') ` event and are consumed internally by Node.js.
1132
1132
Applications should avoid using such messages or listening for
1133
1133
` 'internalMessage' ` events as it is subject to change without notice.
Original file line number Diff line number Diff line change @@ -622,7 +622,7 @@ Once a socket is assigned to this request and is connected
622
622
added: v0.5.9
623
623
-->
624
624
625
- * ` timeout ` {number} Milliseconds before a request is considered to be timed out.
625
+ * ` timeout ` {number} Milliseconds before a request times out.
626
626
* ` callback ` {Function} Optional function to be called when a timeout occurs. Same as binding to the ` timeout ` event.
627
627
628
628
Once a socket is assigned to this request and is connected
Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ The `'close'` event is emitted when one of the following occur:
60
60
61
61
The listener function is called without passing any arguments.
62
62
63
- The ` readline.Interface ` instance should be considered to be "finished" once
64
- the ` 'close' ` event is emitted.
63
+ The ` readline.Interface ` instance is finished once the ` 'close' ` event is
64
+ emitted.
65
65
66
66
### Event: 'line'
67
67
<!-- YAML
Original file line number Diff line number Diff line change @@ -29,8 +29,7 @@ For example, at the time of this writing:
29
29
released as part of the Chromium ** canary** builds. This branch will be
30
30
promoted to beta next when V8 5.5 ships as stable.
31
31
32
- All older branches are considered ** abandoned** , and are not maintained by the
33
- V8 team.
32
+ All older branches are abandoned and are not maintained by the V8 team.
34
33
35
34
### V8 merge process overview
36
35
You can’t perform that action at this time.
0 commit comments