doc: fix typo in child_process docs
authorBenjamin Gruenbaum <inglor@gmail.com>
Sun, 13 Mar 2016 08:32:01 +0000 (10:32 +0200)
committerMyles Borins <mborins@us.ibm.com>
Mon, 21 Mar 2016 20:07:08 +0000 (13:07 -0700)
Fixes a typo in the child process docs.
Fixes: https://github.com/nodejs/nodejs.org/issues/573

PR-URL: https://github.com/nodejs/node/pull/5681

Reviewed-By: thefourtheye <thechargingvolcano@gmail.com>
doc/api/child_process.markdown

index c886ae3..2e7d137 100644 (file)
@@ -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