doc: typo: interal->internal.
authorCorey Kosak <kosak@kosak.com>
Tue, 22 Mar 2016 21:18:02 +0000 (17:18 -0400)
committerMyles Borins <mborins@us.ibm.com>
Wed, 30 Mar 2016 20:14:18 +0000 (13:14 -0700)
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>
doc/api/events.markdown

index 7b7ff57..500d046 100644 (file)
@@ -402,14 +402,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