summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authormorrme <morrme@users.noreply.github.com>2017-04-23 16:51:32 -0500
committerVse Mozhet Byt <vsemozhetbyt@gmail.com>2017-04-24 11:23:37 +0300
commit37699070cc3aea7c2a0b8b764c8314a301e977fa (patch)
treefbf4492b8b9140deeb5ff0b0bd129beb6366bfe0 /doc
parent8eb7790a8883e829efa291af02b3beecdd62f78d (diff)
downloadandroid-node-v8-37699070cc3aea7c2a0b8b764c8314a301e977fa.tar.gz
android-node-v8-37699070cc3aea7c2a0b8b764c8314a301e977fa.tar.bz2
android-node-v8-37699070cc3aea7c2a0b8b764c8314a301e977fa.zip
doc: fix typo in doc/api/process.md
PR-URL: https://github.com/nodejs/node/pull/12612 Fixes: https://github.com/nodejs/node/issues/12565 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: David Cai <davidcai1993@yahoo.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/process.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/process.md b/doc/api/process.md
index 5df5c5830a..30e46d3541 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -1591,7 +1591,7 @@ These behaviours are partly for historical reasons, as changing them would
create backwards incompatibility, but they are also expected by some users.
Synchronous writes avoid problems such as output written with `console.log()` or
-`console.write()` being unexpectedly interleaved, or not written at all if
+`console.error()` being unexpectedly interleaved, or not written at all if
`process.exit()` is called before an asynchronous write completes. See
[`process.exit()`][] for more information.