summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCorey Kosak <kosak@kosak.com>2016-03-22 17:18:02 -0400
committerBenjamin Gruenbaum <inglor@gmail.com>2016-03-22 23:26:27 +0200
commite301f979de1f5eb2c075fddc965ba54bdab9ac59 (patch)
tree645223ac247a45b4c763431f97491a221183b395 /doc
parentcd9f54b3b93ab1f6693d271f4660d67abb2da85b (diff)
downloadandroid-node-v8-e301f979de1f5eb2c075fddc965ba54bdab9ac59.tar.gz
android-node-v8-e301f979de1f5eb2c075fddc965ba54bdab9ac59.tar.bz2
android-node-v8-e301f979de1f5eb2c075fddc965ba54bdab9ac59.zip
doc: typo: interal->internal.
Fixes a copy typo in the events.md docs. PR-URL: https://github.com/nodejs/node/pull/5849 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/events.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/events.markdown b/doc/api/events.markdown
index a1dd8a4fbd..8df9e143a0 100644
--- a/doc/api/events.markdown
+++ b/doc/api/events.markdown
@@ -418,14 +418,14 @@ myEmitter.on('event', callbackA);
myEmitter.on('event', callbackB);
// callbackA removes listener callbackB but it will still be called.
-// Interal listener array at time of emit [callbackA, callbackB]
+// Internal listener array at time of emit [callbackA, callbackB]
myEmitter.emit('event');
// Prints:
// A
// B
// callbackB is now removed.
-// Interal listener array [callbackA]
+// Internal listener array [callbackA]
myEmitter.emit('event');
// Prints:
// A