diff --git a/doc/api/events.markdown b/doc/api/events.markdown index 857d5658bbd..cbd3d8814b9 100644 --- a/doc/api/events.markdown +++ b/doc/api/events.markdown @@ -118,6 +118,10 @@ Execute each of the listeners in order with the supplied arguments. Returns `true` if event had listeners, `false` otherwise. +**Note:** Objects are passed by reference, meaning that the same object can be +passed to multiple listeners. If a listener needs to modify a shared object, a +copy of the object should be made. + ### Class Method: EventEmitter.listenerCount(emitter, event)