@@ -35,10 +35,11 @@ classes.
3535added: v0.5.8
3636-->
3737
38- The ` tty.ReadStream ` class is a subclass of [ ` net.Socket ` ] [ ] that represents the
39- readable side of a TTY. In normal circumstances [ ` process.stdin ` ] [ ] will be the
40- only ` tty.ReadStream ` instance in a Node.js process and there should be no
41- reason to create additional instances.
38+ * Extends: {net.Socket}
39+
40+ Represents the readable side of a TTY. In normal circumstances
41+ [ ` process.stdin ` ] [ ] will be the only ` tty.ReadStream ` instance in a Node.js
42+ process and there should be no reason to create additional instances.
4243
4344### readStream.isRaw
4445<!-- YAML
@@ -78,10 +79,12 @@ terminal is disabled, including echoing input characters.
7879added: v0.5.8
7980-->
8081
81- The ` tty.WriteStream ` class is a subclass of [ ` net.Socket ` ] [ ] that represents
82- the writable side of a TTY. In normal circumstances, [ ` process.stdout ` ] [ ] and
83- [ ` process.stderr ` ] [ ] will be the only ` tty.WriteStream ` instances created for a
84- Node.js process and there should be no reason to create additional instances.
82+ * Extends: {net.Socket}
83+
84+ Represents the writable side of a TTY. In normal circumstances,
85+ [ ` process.stdout ` ] [ ] and [ ` process.stderr ` ] [ ] will be the only
86+ ` tty.WriteStream ` instances created for a Node.js process and there
87+ should be no reason to create additional instances.
8588
8689### Event: 'resize'
8790<!-- YAML
@@ -284,7 +287,6 @@ The `tty.isatty()` method returns `true` if the given `fd` is associated with
284287a TTY and ` false ` if it is not, including whenever ` fd ` is not a non-negative
285288integer.
286289
287- [ `net.Socket` ] : net.html#net_class_net_socket
288290[ `process.stderr` ] : process.html#process_process_stderr
289291[ `process.stdin` ] : process.html#process_process_stdin
290292[ `process.stdout` ] : process.html#process_process_stdout
0 commit comments