Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHackzzila <admin@hackzzila.com>2018-04-25 05:14:12 +0300
committerVse Mozhet Byt <vsemozhetbyt@gmail.com>2018-04-25 12:18:20 +0300
commit214fd404b9f016a63316498090c33add780ea4d8 (patch)
treed24e2dd8cc6750cf2c2ceb4a72da9df024992d5d /doc/api/tty.md
parentd3edf2fcde0c37206dc339aab7333212d20aa0f1 (diff)
doc: fix net.Socket link inconsistencies
PR-URL: https://github.com/nodejs/node/pull/20271 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'doc/api/tty.md')
-rw-r--r--doc/api/tty.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/tty.md b/doc/api/tty.md
index 193005c017d..f8bc4feec3e 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.