From c6d7974d808d1b781d40eb43eab05d1979604339 Mon Sep 17 00:00:00 2001 From: Benjamin Steephenson Date: Tue, 3 Mar 2015 09:59:07 -0500 Subject: [PATCH] docs:events clarify emitter.listener() behavior Clarifies that emitter.listener() returns a copy, not a reference Resolves issue #9022 Reviewed-By: James M Snell PR-URL: https://github.com/joyent/node/pull/25591 --- 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 fbc04a96239b0f..a51905ab4da110 100644 --- a/doc/api/events.markdown +++ b/doc/api/events.markdown @@ -122,7 +122,7 @@ Note that `emitter.setMaxListeners(n)` still has precedence over ### emitter.listeners(event) -Returns an array of listeners for the specified event. +Returns a copy of the array of listeners for the specified event. server.on('connection', function (stream) { console.log('someone connected!');