aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinwoo Jung <jmwsoft@gmail.com>2015-09-11 00:20:57 +0900
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2015-09-11 11:10:37 -0400
commit958a94e19dd6dda962cd690a5f4aa0ad02ac21bc (patch)
tree8250ede217a6cd26eba6ed002bdf85af34093d66
parenta1949e8ad9483609fd450f8cc21cc2dca703259e (diff)
downloadandroid-node-v8-958a94e19dd6dda962cd690a5f4aa0ad02ac21bc.tar.gz
android-node-v8-958a94e19dd6dda962cd690a5f4aa0ad02ac21bc.tar.bz2
android-node-v8-958a94e19dd6dda962cd690a5f4aa0ad02ac21bc.zip
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>
-rw-r--r--doc/api/events.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/events.markdown b/doc/api/events.markdown
index 75571c729b..bd227a34db 100644
--- a/doc/api/events.markdown
+++ b/doc/api/events.markdown
@@ -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.