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>
This commit is contained in:
morrme 2017-04-23 16:51:32 -05:00 committed by Vse Mozhet Byt
parent 8eb7790a88
commit 37699070cc

View File

@ -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.