From da2902ddfd9346a5c69a3e28fcca9ced771ea2b8 Mon Sep 17 00:00:00 2001 From: Minwoo Jung Date: Fri, 11 Sep 2015 00:20:57 +0900 Subject: [PATCH] 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 Reviewed-By: Jeremiah Senkpiel --- doc/api/events.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/events.markdown b/doc/api/events.markdown index 920c93ec96c2a7..e23e6f23b1dc9a 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.