doc: use 3rd person singular for consistency · nodejs/node@82ba183

Original file line numberDiff line numberDiff line change

@@ -62,7 +62,7 @@ Returns emitter, so calls can be chained.

6262
6363

### emitter.removeListener(event, listener)

6464
65-

Remove a listener from the listener array for the specified event.

65+

Removes a listener from the listener array for the specified event.

6666

**Caution**: changes array indices in the listener array behind the listener.

6767
6868

var callback = function(stream) {

@@ -132,7 +132,7 @@ Returns a copy of the array of listeners for the specified event.

132132
133133

### emitter.emit(event[, arg1][, arg2][, ...])

134134
135-

Execute each of the listeners in order with the supplied arguments.

135+

Executes each of the listeners in order with the supplied arguments.

136136
137137

Returns `true` if event had listeners, `false` otherwise.

138138