From f515c6efb6f08a71b30b7c2fe61f1b43f907a22d Mon Sep 17 00:00:00 2001 From: Rod Machen Date: Tue, 24 May 2016 09:04:42 -0500 Subject: [PATCH] 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 --- doc/api/child_process.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/child_process.md b/doc/api/child_process.md index dab853c0bfff8c..1d79d16c1b2c15 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).)