fix(node): process.stdout JSDoc typo (#45438)

This commit is contained in:
Quentin 2020-06-24 03:36:52 -05:00 committed by GitHub
parent a974df8111
commit fc2ff3d19f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -768,11 +768,11 @@ declare namespace NodeJS {
interface Process extends EventEmitter {
/**
* Can also be a tty.WriteStream, not typed due to limitation.s
* Can also be a tty.WriteStream, not typed due to limitations.
*/
stdout: WriteStream;
/**
* Can also be a tty.WriteStream, not typed due to limitation.s
* Can also be a tty.WriteStream, not typed due to limitations.
*/
stderr: WriteStream;
stdin: ReadStream;