summaryrefslogtreecommitdiff
path: root/doc/api/repl.md
diff options
context:
space:
mode:
authorVse Mozhet Byt <vsemozhetbyt@gmail.com>2018-01-30 00:15:53 +0200
committerVse Mozhet Byt <vsemozhetbyt@gmail.com>2018-02-01 02:52:31 +0200
commitfd3a0cfb7c467c8016ad739a473be864425e645d (patch)
tree568d5c3dc5b476e87b620251bf72601ff526b849 /doc/api/repl.md
parent83d0f4c92b46fa0fbd13e9ebc7a473275da04e2e (diff)
downloadandroid-node-v8-fd3a0cfb7c467c8016ad739a473be864425e645d.tar.gz
android-node-v8-fd3a0cfb7c467c8016ad739a473be864425e645d.tar.bz2
android-node-v8-fd3a0cfb7c467c8016ad739a473be864425e645d.zip
doc: linkify missing types
Also, alphabetize all types in type-parser.js and fix some nits in type formats. PR-URL: https://github.com/nodejs/node/pull/18444 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/api/repl.md')
-rw-r--r--doc/api/repl.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/repl.md b/doc/api/repl.md
index a1dfffa9cc..506f54a4b8 100644
--- a/doc/api/repl.md
+++ b/doc/api/repl.md
@@ -412,9 +412,9 @@ changes:
* `options` {Object|string}
* `prompt` {string} The input prompt to display. Defaults to `> `
(with a trailing space).
- * `input` {Readable} The Readable stream from which REPL input will be read.
+ * `input` {stream.Readable} The Readable stream from which REPL input will be read.
Defaults to `process.stdin`.
- * `output` {Writable} The Writable stream to which REPL output will be
+ * `output` {stream.Writable} The Writable stream to which REPL output will be
written. Defaults to `process.stdout`.
* `terminal` {boolean} If `true`, specifies that the `output` should be
treated as a TTY terminal, and have ANSI/VT100 escape codes written to it.