diff options
author | Andreas Madsen <amwebdk@gmail.com> | 2011-12-27 13:08:41 +0100 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2012-01-17 19:07:57 +0100 |
commit | 70884875c9cc40ef1318d7a929f2de37546c4134 (patch) | |
tree | 5625df2649bb4151d9662ef9b27bd10ff3715426 /doc | |
parent | 21dd53f9d3d685018c5a9e52251c3c9b6b69f79d (diff) | |
download | node-new-70884875c9cc40ef1318d7a929f2de37546c4134.tar.gz |
Allow calling fork() without args or options
Closes GH-2424
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/child_processes.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/child_processes.markdown b/doc/api/child_processes.markdown index b6905b558d..a7c174c67e 100644 --- a/doc/api/child_processes.markdown +++ b/doc/api/child_processes.markdown @@ -198,7 +198,7 @@ subshell but rather the specified file directly. This makes it slightly leaner than `child_process.exec`. It has the same options. -### child_process.fork(modulePath, arguments, options) +### child_process.fork(modulePath, [arguments], [options]) This is a special case of the `spawn()` functionality for spawning Node processes. In addition to having all the methods in a normal ChildProcess |