Skip to content
Closed
Changes from all commits
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
4 changes: 2 additions & 2 deletions doc/api/events.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ attached to.
Use `require('events')` to access the EventEmitter class.

```javascript
var EventEmitter = require('events');
const EventEmitter = require('events');
```

When an `EventEmitter` instance experiences an error, the typical action is
Expand Down Expand Up @@ -164,7 +164,7 @@ Returns emitter, so calls can be chained.
Removes a listener from the listener array for the specified event.
**Caution**: changes array indices in the listener array behind the listener.

var callback = function(stream) {
function callback(stream) {
console.log('someone connected!');
};
server.on('connection', callback);
Expand Down