From ebe97ba45f84a3b859592bb790c7ab4cd0a2341f 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 c38badfdf0f..5d4c08f1438 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1594,7 +1594,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.