doc: use 3rd person singular for consistency
authorAnne-Gaelle Colom <coloma@wmin.ac.uk>
Wed, 9 Sep 2015 10:40:46 +0000 (11:40 +0100)
committerRod Vagg <rod@vagg.org>
Fri, 11 Sep 2015 01:31:20 +0000 (11:31 +1000)
PR-URL: https://github.com/nodejs/node/pull/2765
Reviewed-By: Michaƫl Zasso <mic.besace@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
doc/api/events.markdown

index b950163..75571c7 100644 (file)
@@ -62,7 +62,7 @@ Returns emitter, so calls can be chained.
 
 ### emitter.removeListener(event, listener)
 
-Remove a listener from the listener array for the specified event.
+Removes a listener from the listener array for the specified event.
 **Caution**: changes array indices in the listener array behind the listener.
 
     var callback = function(stream) {
@@ -132,7 +132,7 @@ Returns a copy of the array of listeners for the specified event.
 
 ### emitter.emit(event[, arg1][, arg2][, ...])
 
-Execute each of the listeners in order with the supplied arguments.
+Executes each of the listeners in order with the supplied arguments.
 
 Returns `true` if event had listeners, `false` otherwise.