We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5676a35 commit 858a524Copy full SHA for 858a524
doc/api/events.markdown
@@ -402,14 +402,14 @@ myEmitter.on('event', callbackA);
402
myEmitter.on('event', callbackB);
403
404
// callbackA removes listener callbackB but it will still be called.
405
-// Interal listener array at time of emit [callbackA, callbackB]
+// Internal listener array at time of emit [callbackA, callbackB]
406
myEmitter.emit('event');
407
// Prints:
408
// A
409
// B
410
411
// callbackB is now removed.
412
-// Interal listener array [callbackA]
+// Internal listener array [callbackA]
413
414
415
0 commit comments