@@ -146,7 +146,7 @@ changes:
146146 * ` encoding ` {string} ** Default:** ` 'utf8' `
147147 * ` shell ` {string} Shell to execute the command with. See
148148 [ Shell Requirements] [ ] and [ Default Windows Shell] [ ] . ** Default:**
149- ` '/bin/sh' ` on UNIX , ` process.env.ComSpec ` on Windows.
149+ ` '/bin/sh' ` on Unix , ` process.env.ComSpec ` on Windows.
150150 * ` timeout ` {number} ** Default:** ` 0 `
151151 * ` maxBuffer ` {number} Largest amount of data in bytes allowed on stdout or
152152 stderr. If exceeded, the child process is terminated and any output is
@@ -260,7 +260,7 @@ changes:
260260 * ` windowsVerbatimArguments ` {boolean} No quoting or escaping of arguments is
261261 done on Windows. Ignored on Unix. ** Default:** ` false ` .
262262 * ` shell ` {boolean|string} If ` true ` , runs ` command ` inside of a shell. Uses
263- ` '/bin/sh' ` on UNIX , and ` process.env.ComSpec ` on Windows. A different
263+ ` '/bin/sh' ` on Unix , and ` process.env.ComSpec ` on Windows. A different
264264 shell can be specified as a string. See [ Shell Requirements] [ ] and
265265 [ Default Windows Shell] [ ] . ** Default:** ` false ` (no shell).
266266* ` callback ` {Function} Called with the output when process terminates.
@@ -411,7 +411,7 @@ changes:
411411 * ` uid ` {number} Sets the user identity of the process (see setuid(2)).
412412 * ` gid ` {number} Sets the group identity of the process (see setgid(2)).
413413 * ` shell ` {boolean|string} If ` true ` , runs ` command ` inside of a shell. Uses
414- ` '/bin/sh' ` on UNIX , and ` process.env.ComSpec ` on Windows. A different
414+ ` '/bin/sh' ` on Unix , and ` process.env.ComSpec ` on Windows. A different
415415 shell can be specified as a string. See [ Shell Requirements] [ ] and
416416 [ Default Windows Shell] [ ] . ** Default:** ` false ` (no shell).
417417 * ` windowsVerbatimArguments ` {boolean} No quoting or escaping of arguments is
@@ -666,7 +666,7 @@ child registers an event handler for the [`'disconnect'`][] event
666666or the [ ` 'message' ` ] [ ] event. This allows the child to exit
667667normally without the process being held open by the open IPC channel.*
668668
669- On UNIX -like operating systems, the [ ` child_process.spawn() ` ] [ ] method
669+ On Unix -like operating systems, the [ ` child_process.spawn() ` ] [ ] method
670670performs memory operations synchronously before decoupling the event loop
671671from the child. Applications with a large memory footprint may find frequent
672672[ ` child_process.spawn() ` ] [ ] calls to be a bottleneck. For more information,
@@ -729,7 +729,7 @@ changes:
729729 * ` windowsHide ` {boolean} Hide the subprocess console window that would
730730 normally be created on Windows systems. ** Default:** ` false ` .
731731 * ` shell ` {boolean|string} If ` true ` , runs ` command ` inside of a shell. Uses
732- ` '/bin/sh' ` on UNIX , and ` process.env.ComSpec ` on Windows. A different
732+ ` '/bin/sh' ` on Unix , and ` process.env.ComSpec ` on Windows. A different
733733 shell can be specified as a string. See [ Shell Requirements] [ ] and
734734 [ Default Windows Shell] [ ] . ** Default:** ` false ` (no shell).
735735* Returns: {Buffer|string} The stdout from the command.
@@ -780,7 +780,7 @@ changes:
780780 * ` env ` {Object} Environment key-value pairs.
781781 * ` shell ` {string} Shell to execute the command with. See
782782 [ Shell Requirements] [ ] and [ Default Windows Shell] [ ] . ** Default:**
783- ` '/bin/sh' ` on UNIX , ` process.env.ComSpec ` on Windows.
783+ ` '/bin/sh' ` on Unix , ` process.env.ComSpec ` on Windows.
784784 * ` uid ` {number} Sets the user identity of the process. (See setuid(2)).
785785 * ` gid ` {number} Sets the group identity of the process. (See setgid(2)).
786786 * ` timeout ` {number} In milliseconds the maximum amount of time the process
@@ -858,7 +858,7 @@ changes:
858858 * ` encoding ` {string} The encoding used for all stdio inputs and outputs.
859859 ** Default:** ` 'buffer' ` .
860860 * ` shell ` {boolean|string} If ` true ` , runs ` command ` inside of a shell. Uses
861- ` '/bin/sh' ` on UNIX , and ` process.env.ComSpec ` on Windows. A different
861+ ` '/bin/sh' ` on Unix , and ` process.env.ComSpec ` on Windows. A different
862862 shell can be specified as a string. See [ Shell Requirements] [ ] and
863863 [ Default Windows Shell] [ ] . ** Default:** ` false ` (no shell).
864864 * ` windowsVerbatimArguments ` {boolean} No quoting or escaping of arguments is
@@ -1255,7 +1255,7 @@ can be handled by the parent and some by the child.
12551255While the example above uses a server created using the ` net ` module, ` dgram `
12561256module servers use exactly the same workflow with the exceptions of listening on
12571257a ` 'message' ` event instead of ` 'connection' ` and using ` server.bind() ` instead
1258- of ` server.listen() ` . This is, however, currently only supported on UNIX
1258+ of ` server.listen() ` . This is, however, currently only supported on Unix
12591259platforms.
12601260
12611261#### Example: sending a socket object
0 commit comments