Skip to content

Commit

Permalink
doc: fix typo in child_process docs
Browse files Browse the repository at this point in the history
Fixes a typo in the child process docs.
Fixes: nodejs/nodejs.org#573

PR-URL: #5681

Reviewed-By: thefourtheye <thechargingvolcano@gmail.com>
  • Loading branch information
benjamingr authored and Myles Borins committed Mar 17, 2016
1 parent 864d2ed commit 0fdbf10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/child_process.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ mean that data sent to the child process may not be immediately consumed.*
The `child_process.spawn()` method spawns the child process asynchronously,
without blocking the Node.js event loop. The `child_process.spawnSync()`
function provides equivalent functionality in a synchronous manner that blocks
the event loop until the spawned process either exits of is terminated.
the event loop until the spawned process either exits or is terminated.

For convenience, the `child_process` module provides a handful of synchronous
and asynchronous alternatives to [`child_process.spawn()`][] and
Expand Down

0 comments on commit 0fdbf10

Please sign in to comment.