Skip to content

Commit

Permalink
readline: fix concievably typo in readline.js
Browse files Browse the repository at this point in the history
Fixes: #8951
PR-URL: #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>
  • Loading branch information
maasencioh authored and jasnell committed Oct 6, 2016
1 parent 9964bf0 commit 14ddd1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/readline.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 14ddd1a

Please sign in to comment.