summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRod Machen <mail@rodmachen.com>2016-05-24 09:04:42 -0500
committerRobert Jefe Lindstaedt <robert.lindstaedt@gmail.com>2016-05-24 23:55:28 +0200
commited11ac608082bf6056825786ab74ed39d773a00a (patch)
tree33f5de91efc91d26c704778a214d12fed20ed660 /doc
parentff00a481699c780934ba089497a172d486a0d7fa (diff)
downloadandroid-node-v8-ed11ac608082bf6056825786ab74ed39d773a00a.tar.gz
android-node-v8-ed11ac608082bf6056825786ab74ed39d773a00a.tar.bz2
android-node-v8-ed11ac608082bf6056825786ab74ed39d773a00a.zip
doc: remove "\" within backticks
Ref: https://github.com/nodejs/node/issues/6911 Ref: https://github.com/nodejs/node/pull/5075 PR-URL: https://github.com/nodejs/node/pull/6952 Reviewed-By: Robert Jefe Lindstaedt <robert.lindstaedt@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/child_process.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/child_process.md b/doc/api/child_process.md
index dab853c0bf..1d79d16c1b 100644
--- a/doc/api/child_process.md
+++ b/doc/api/child_process.md
@@ -125,7 +125,7 @@ exec('my.bat', (err, stdout, stderr) => {
command line parsing should be compatible with `cmd.exe`.)
* `timeout` {Number} (Default: `0`)
* [`maxBuffer`][] {Number} largest amount of data (in bytes) allowed on
- stdout or stderr - if exceeded child process is killed (Default: `200\*1024`)
+ stdout or stderr - if exceeded child process is killed (Default: `200*1024`)
* `killSignal` {String} (Default: `'SIGTERM'`)
* `uid` {Number} Sets the user identity of the process. (See setuid(2).)
* `gid` {Number} Sets the group identity of the process. (See setgid(2).)
@@ -195,7 +195,7 @@ replace the existing process and uses a shell to execute the command.*
* `encoding` {String} (Default: `'utf8'`)
* `timeout` {Number} (Default: `0`)
* [`maxBuffer`][] {Number} largest amount of data (in bytes) allowed on
- stdout or stderr - if exceeded child process is killed (Default: `200\*1024`)
+ stdout or stderr - if exceeded child process is killed (Default: `200*1024`)
* `killSignal` {String} (Default: `'SIGTERM'`)
* `uid` {Number} Sets the user identity of the process. (See setuid(2).)
* `gid` {Number} Sets the group identity of the process. (See setgid(2).)