From 37699070cc3aea7c2a0b8b764c8314a301e977fa 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 5df5c5830a9..30e46d35419 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.