summaryrefslogtreecommitdiff
path: root/lib/readline.js
diff options
context:
space:
mode:
authorMiguel Angel Asencio Hurtado <maasencioh@gmail.com>2016-10-06 10:04:40 +0200
committerAnna Henningsen <anna@addaleax.net>2016-10-06 18:22:30 +0200
commit7a94e2d673cfff9039c258369169b5b78155a67e (patch)
tree2267f00495446e3811b1ee5b02a5953e9a228304 /lib/readline.js
parent5e6ae830fe59395a40c496655550da6d38ded205 (diff)
downloadandroid-node-v8-7a94e2d673cfff9039c258369169b5b78155a67e.tar.gz
android-node-v8-7a94e2d673cfff9039c258369169b5b78155a67e.tar.bz2
android-node-v8-7a94e2d673cfff9039c258369169b5b78155a67e.zip
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>
Diffstat (limited to 'lib/readline.js')
-rw-r--r--lib/readline.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/readline.js b/lib/readline.js
index da375c2bb7..3927402f63 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) {