diff options
author | Sam Roberts <sam@strongloop.com> | 2014-01-15 17:12:20 -0800 |
---|---|---|
committer | Timothy J Fontaine <tjfontaine@gmail.com> | 2014-01-16 07:35:12 -0800 |
commit | 549be1caa84b4746a3697943bf4b19acb6430cc2 (patch) | |
tree | f5e951fa395c3e67b52b20a1f141bbe9e37be86c | |
parent | 7f81ca2c47a7c9376f831e8be5d62a5adc917e4e (diff) | |
download | node-new-549be1caa84b4746a3697943bf4b19acb6430cc2.tar.gz |
doc: child_process.execFile arguments are optional
-rw-r--r-- | doc/api/child_process.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/child_process.markdown b/doc/api/child_process.markdown index 7f5958f547..e15ac02eca 100644 --- a/doc/api/child_process.markdown +++ b/doc/api/child_process.markdown @@ -531,7 +531,7 @@ amount of data allowed on stdout or stderr - if this value is exceeded then the child process is killed. -## child_process.execFile(file, args, options, callback) +## child_process.execFile(file, [args], [options], [callback]) * `file` {String} The filename of the program to run * `args` {Array} List of string arguments |