Skip to content

Commit

Permalink
doc: use arrow function for anonymous callbacks
Browse files Browse the repository at this point in the history
PR-URL: #24606
Reviewed-By: Ron Korving <ron@ronkorving.nl>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
  • Loading branch information
koki-oshima authored and BethGriggs committed Feb 11, 2019
1 parent 6788d85 commit a1a393b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions doc/api/async_hooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -479,13 +479,12 @@ The ID returned from `executionAsyncId()` is related to execution timing, not
causality (which is covered by `triggerAsyncId()`):

```js
const server = net.createServer(function onConnection(conn) {
const server = net.createServer((conn) => {
// Returns the ID of the server, not of the new connection, because the
// onConnection callback runs in the execution scope of the server's
// MakeCallback().
// callback runs in the execution scope of the server's MakeCallback().
async_hooks.executionAsyncId();

}).listen(port, function onListening() {
}).listen(port, () => {
// Returns the ID of a TickObject (i.e. process.nextTick()) because all
// callbacks passed to .listen() are wrapped in a nextTick().
async_hooks.executionAsyncId();
Expand Down

0 comments on commit a1a393b

Please sign in to comment.