From f3b73ad57ecb2db278079b4934d6920e78818e68 Mon Sep 17 00:00:00 2001 From: morrme Date: Sun, 23 Apr 2017 16:51:32 -0500 Subject: [PATCH] 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 Reviewed-By: Luigi Pinca Reviewed-By: Daniel Bevenius Reviewed-By: David Cai --- doc/api/process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/process.md b/doc/api/process.md index f5cfe8647c3669..e37c80d8bebf61 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1578,7 +1578,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.