From a1a393bfbf31fa15de65d80531b7be570c3da382 Mon Sep 17 00:00:00 2001 From: koki-oshima Date: Sat, 24 Nov 2018 16:35:20 +0900 Subject: [PATCH] doc: use arrow function for anonymous callbacks PR-URL: https://github.com/nodejs/node/pull/24606 Reviewed-By: Ron Korving Reviewed-By: Joyee Cheung Reviewed-By: Vse Mozhet Byt Reviewed-By: Gireesh Punathil --- doc/api/async_hooks.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md index 6a6cc781a79f1f..3074e161721f2d 100644 --- a/doc/api/async_hooks.md +++ b/doc/api/async_hooks.md @@ -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();