From 171cbb1c6423714998351c9c3c0e6145481335bf Mon Sep 17 00:00:00 2001 From: Hackzzila Date: Tue, 24 Apr 2018 21:14:12 -0500 Subject: [PATCH] doc: fix net.Socket link inconsistencies PR-URL: https://github.com/nodejs/node/pull/20271 Reviewed-By: Vse Mozhet Byt Reviewed-By: Rich Trott Reviewed-By: Trivikram Kamat Reviewed-By: Luigi Pinca --- doc/api/tty.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/tty.md b/doc/api/tty.md index 193005c017dda7..f8bc4feec3e86d 100644 --- a/doc/api/tty.md +++ b/doc/api/tty.md @@ -77,8 +77,8 @@ Note that `CTRL`+`C` will no longer cause a `SIGINT` when in this mode. added: v0.5.8 --> -The `tty.WriteStream` class is a subclass of `net.Socket` that represents the -writable side of a TTY. In normal circumstances, [`process.stdout`][] and +The `tty.WriteStream` class is a subclass of [`net.Socket`][] that represents +the writable side of a TTY. In normal circumstances, [`process.stdout`][] and [`process.stderr`][] will be the only `tty.WriteStream` instances created for a Node.js process and there should be no reason to create additional instances.