Closed
Description
- Version: master, v7.x, v6.x
- Platform: n/a
- Subsystem: doc
In doc/api/process.md, there is a typo in the 'A note on process I/O' section where it says:
Synchronous writes avoid problems such as output written with `console.log()` or `console.write()` being unexpectedly interleaved, ...
where console.write()
should presumably instead be console.error()
, since console.write()
does not exist and console.error()
is the only other console
method referred to in that section.