From 28da400d479f3a6a5e07c9ba912ad4bf6be31f02 Mon Sep 17 00:00:00 2001 From: Laurent Fortin Date: Thu, 17 Sep 2015 20:29:14 -0400 Subject: [PATCH] doc: make execFileSync in line with execFile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/2940 Reviewed-By: Michaƫl Zasso Reviewed-By: Roman Reiss --- doc/api/child_process.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/child_process.markdown b/doc/api/child_process.markdown index 9399eac00e..fdd9fce559 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