From a44f0855b4e1a43fc127f5c98fcc59d834ba7b1e Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 6 Dec 2017 10:18:05 -0800 Subject: [PATCH] doc: fix typo in repl.md PR-URL: https://github.com/nodejs/node/pull/17502 Reviewed-By: Colin Ihrig Reviewed-By: Richard Lau Reviewed-By: Anatoli Papirovski Reviewed-By: Jon Moss Reviewed-By: Minwoo Jung Reviewed-By: Luigi Pinca --- doc/api/repl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/repl.md b/doc/api/repl.md index 3cac76497a0a47..69f709a1be874b 100644 --- a/doc/api/repl.md +++ b/doc/api/repl.md @@ -386,7 +386,7 @@ added: v0.1.91 * `output` {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 a TTY terminal, and have ANSI/VT100 escape codes written to it. + treated as a TTY terminal, and have ANSI/VT100 escape codes written to it. Defaults to checking the value of the `isTTY` property on the `output` stream upon instantiation. * `eval` {Function} The function to be used when evaluating each given line