From: Laurent Fortin Date: Fri, 18 Sep 2015 00:29:14 +0000 (-0400) Subject: doc: make execFileSync in line with execFile X-Git-Tag: v4.1.2~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4fc33ac11ad999327eb96e71251b2d926b94e0f8;p=platform%2Fupstream%2Fnodejs.git doc: make execFileSync in line with execFile PR-URL: https://github.com/nodejs/node/pull/2940 Reviewed-By: Michaƫl Zasso Reviewed-By: Roman Reiss --- diff --git a/doc/api/child_process.markdown b/doc/api/child_process.markdown index 9399eac00..fdd9fce55 100644 --- a/doc/api/child_process.markdown +++ b/doc/api/child_process.markdown @@ -704,9 +704,9 @@ until the process has completely exited. That is to say, if the process handles the `SIGTERM` signal and doesn't exit, your process will wait until the child process has exited. -### child_process.execFileSync(command[, args][, options]) +### child_process.execFileSync(file[, args][, options]) -* `command` {String} The command to run +* `file` {String} The filename of the program to run * `args` {Array} List of string arguments * `options` {Object} * `cwd` {String} Current working directory of the child process