Skip to content

Commit f6ee099

Browse files
benjamingrrvagg
authored andcommitted
doc: fix typo in child_process docs
Fixes a typo in the child process docs. Fixes: nodejs/nodejs.org#573 PR-URL: #5681 Reviewed-By: thefourtheye <[email protected]>
1 parent dd12661 commit f6ee099

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/api/child_process.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ mean that data sent to the child process may not be immediately consumed.*
3232
The `child_process.spawn()` method spawns the child process asynchronously,
3333
without blocking the Node.js event loop. The `child_process.spawnSync()`
3434
function provides equivalent functionality in a synchronous manner that blocks
35-
the event loop until the spawned process either exits of is terminated.
35+
the event loop until the spawned process either exits or is terminated.
3636

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

0 commit comments

Comments
 (0)