Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: add emitter.off to events.md #20291

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
insert a link
  • Loading branch information
Ajido committed Apr 25, 2018
commit f1bb465972ac48dda044ced3f7dda40692976bdf
3 changes: 2 additions & 1 deletion doc/api/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ added: v10.0.0
* `listener` {Function}
* Returns: {EventEmitter}

Alias for `emitter.removeListener(eventName, listener)`.
Alias for [`emitter.removeListener()`][].

### emitter.on(eventName, listener)
<!-- YAML
Expand Down Expand Up @@ -637,6 +637,7 @@ emitter.emit('log');
[`EventEmitter.defaultMaxListeners`]: #events_eventemitter_defaultmaxlisteners
[`domain`]: domain.html
[`emitter.listenerCount()`]: #events_emitter_listenercount_eventname
[`emitter.removeListener()`]: #events_emitter_removelistener_eventname_listener
[`emitter.setMaxListeners(n)`]: #events_emitter_setmaxlisteners_n
[`fs.ReadStream`]: fs.html#fs_class_fs_readstream
[`net.Server`]: net.html#net_class_net_server
Expand Down