summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJared Fox <jalexanderfox@gmail.com>2015-06-24 16:58:38 -0400
committerJames M Snell <jasnell@gmail.com>2015-08-03 20:44:41 -0700
commitcb660ab3d311ee16cc8275bdca2b3a566edf5081 (patch)
tree0798aa2b7cfeceac44d83fa56ad7600b86203099
parent59c67fe3cda1163e4e3cf66a8ab16e7b6d72e6a3 (diff)
downloadnode-cb660ab3d311ee16cc8275bdca2b3a566edf5081.tar.gz
Update child_process.markdown, spelling
'the' to 'then' Reviewed-By: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/joyent/node/pull/25591
-rw-r--r--doc/api/child_process.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/child_process.markdown b/doc/api/child_process.markdown
index 4a62c674e..71b5b6d40 100644
--- a/doc/api/child_process.markdown
+++ b/doc/api/child_process.markdown
@@ -274,7 +274,7 @@ Here is an example of sending a server:
child.send('server', server);
});
-And the child would the receive the server object as:
+And the child would then receive the server object as:
process.on('message', function(m, server) {
if (m === 'server') {