From 14ddd1a59f88b6450d9f4825c950890134461ec1 Mon Sep 17 00:00:00 2001 From: Miguel Angel Asencio Hurtado Date: Thu, 6 Oct 2016 10:04:40 +0200 Subject: [PATCH] readline: fix `concievably` typo in readline.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: https://github.com/nodejs/node/issues/8951 PR-URL: https://github.com/nodejs/node/pull/8953 Reviewed-By: Brian White Reviewed-By: Luigi Pinca Reviewed-By: Michaƫl Zasso Reviewed-By: Colin Ihrig Reviewed-By: Anna Henningsen --- lib/readline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/readline.js b/lib/readline.js index da375c2bb77c97..3927402f63ef52 100644 --- a/lib/readline.js +++ b/lib/readline.js @@ -369,7 +369,7 @@ Interface.prototype._normalWrite = function(b) { // got one or more newlines; process into "line" events var lines = string.split(lineEnding); - // either '' or (concievably) the unfinished portion of the next line + // either '' or (conceivably) the unfinished portion of the next line string = lines.pop(); this._line_buffer = string; lines.forEach(function(line) {