Browse Source

docs:events clarify emitter.listener() behavior

Clarifies that emitter.listener() returns a copy, not a reference
Resolves issue #9022

Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: https://github.com/joyent/node/pull/25591
v0.12-staging
Benjamin Steephenson 10 years ago
committed by James M Snell
parent
commit
8cbf7cb021
  1. 2
      doc/api/events.markdown

2
doc/api/events.markdown

@ -104,7 +104,7 @@ Note that `emitter.setMaxListeners(n)` still has precedence over
### emitter.listeners(event) ### 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) { server.on('connection', function (stream) {
console.log('someone connected!'); console.log('someone connected!');

Loading…
Cancel
Save