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).)