File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ Returns emitter, so calls can be chained.
62
62
63
63
### emitter.removeListener(event, listener)
64
64
65
- Remove a listener from the listener array for the specified event.
65
+ Removes a listener from the listener array for the specified event.
66
66
** Caution** : changes array indices in the listener array behind the listener.
67
67
68
68
var callback = function(stream) {
@@ -132,7 +132,7 @@ Returns a copy of the array of listeners for the specified event.
132
132
133
133
### emitter.emit(event[ , arg1] [ , arg2 ] [ , ...] )
134
134
135
- Execute each of the listeners in order with the supplied arguments.
135
+ Executes each of the listeners in order with the supplied arguments.
136
136
137
137
Returns ` true ` if event had listeners, ` false ` otherwise.
138
138
You can’t perform that action at this time.
0 commit comments