readline: fix `concievably` typo in readline.js

Fixes: https://github.com/nodejs/node/issues/8951
PR-URL: https://github.com/nodejs/node/pull/8953
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
This commit is contained in:
Miguel Angel Asencio Hurtado 2016-10-06 10:04:40 +02:00 коммит произвёл Anna Henningsen
Родитель 5e6ae830fe
Коммит 7a94e2d673
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: D8B9F5AEAE84E4CF
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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) {