summaryrefslogtreecommitdiff
path: root/doc/api/child_process.md
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-11-28 21:53:24 -0500
committerRich Trott <rtrott@gmail.com>2017-12-01 14:46:36 -0800
commitff9a6bc1f343c146c4d54034e351e1afb1da3238 (patch)
tree6f8124f4fbe096149547a2d5acc4071722f9ae67 /doc/api/child_process.md
parentd2b2baf2a5d61c3ce8a5be1e4eac5f4cf984efce (diff)
downloadandroid-node-v8-ff9a6bc1f343c146c4d54034e351e1afb1da3238.tar.gz
android-node-v8-ff9a6bc1f343c146c4d54034e351e1afb1da3238.tar.bz2
android-node-v8-ff9a6bc1f343c146c4d54034e351e1afb1da3238.zip
doc: add missing serial commas
PR-URL: https://github.com/nodejs/node/pull/17384 Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Alexey Orlenko <eaglexrlnk@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Diffstat (limited to 'doc/api/child_process.md')
-rw-r--r--doc/api/child_process.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/child_process.md b/doc/api/child_process.md
index 8be21a1d07..801c425194 100644
--- a/doc/api/child_process.md
+++ b/doc/api/child_process.md
@@ -628,7 +628,7 @@ pipes between the parent and child. The value is one of the following:
5. Positive integer - The integer value is interpreted as a file descriptor
that is is currently open in the parent process. It is shared with the child
process, similar to how {Stream} objects can be shared.
-6. `null`, `undefined` - Use default value. For stdio fds 0, 1 and 2 (in other
+6. `null`, `undefined` - Use default value. For stdio fds 0, 1, and 2 (in other
words, stdin, stdout, and stderr) a pipe is created. For fd 3 and up, the
default is `'ignore'`.