doc: make execFileSync in line with execFile
authorLaurent Fortin <laurent.fortin@gmail.com>
Fri, 18 Sep 2015 00:29:14 +0000 (20:29 -0400)
committerJeremiah Senkpiel <fishrock123@rocketmail.com>
Fri, 25 Sep 2015 05:09:44 +0000 (22:09 -0700)
PR-URL: https://github.com/nodejs/node/pull/2940
Reviewed-By: Michaƫl Zasso <mic.besace@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
doc/api/child_process.markdown

index 9399eac..fdd9fce 100644 (file)
@@ -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