doc: use "Calls" over "Executes" for consistency

"Calls" is used frequently throughout the docs except for this line.
Use "Calls" over "Executes" to make it consistent.

PR-URL: https://github.com/nodejs/node/pull/2800
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
pull/2800/merge
Minwoo Jung 2015-09-11 00:20:57 +09:00 committed by Jeremiah Senkpiel
parent a1949e8ad9
commit 958a94e19d
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ Returns a copy of the array of listeners for the specified event.
### emitter.emit(event[, arg1][, arg2][, ...])
Executes each of the listeners in order with the supplied arguments.
Calls each of the listeners in order with the supplied arguments.
Returns `true` if event had listeners, `false` otherwise.