From 114fe0d3596841cd2fd9c714f6c99d65323f8aba Mon Sep 17 00:00:00 2001 From: Prof Gra Date: Fri, 9 May 2014 14:04:52 +0200 Subject: [PATCH] =?UTF-8?q?Typo=20about=20=C2=ABplatform=20not=20supportin?= =?UTF-8?q?g=E2=80=A6=C2=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit BTW, I thought my platform was OK with this (Debian). What platform support/don't support interactive reading? --- lib/readline-sync.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/readline-sync.js b/lib/readline-sync.js index 67e8110..3a8ba8c 100644 --- a/lib/readline-sync.js +++ b/lib/readline-sync.js @@ -31,7 +31,7 @@ var _readlineSync = function(display) { if (e.code === 'EOF') { break; } // pipe if (e.code === 'EAGAIN') { // EAGAIN, resource temporarily unavailable // util can't inherit Error. - err = new Error('The platform don\'t support interactively reading from stdin'); + err = new Error('The platform doesn\'t support interactive reading from stdin'); err.errno = e.errno; err.code = e.code; }