From 8d86d232e7ba3c5ca626ed4712cf37c3b4fd0370 Mon Sep 17 00:00:00 2001 From: Corey Kosak Date: Tue, 22 Mar 2016 17:18:02 -0400 Subject: [PATCH] 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 Reviewed-By: James M Snell --- doc/api/events.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/events.markdown b/doc/api/events.markdown index 7b7ff57..500d046 100644 --- a/doc/api/events.markdown +++ b/doc/api/events.markdown @@ -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 -- 2.7.4