From f30a660ec9f196b6223e8d44a654f9eecc402e5d Mon Sep 17 00:00:00 2001 From: xuchaobei Date: Thu, 23 Sep 2021 17:28:22 +0800 Subject: [PATCH] fix typo error --- doc/api/async_hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md index 7dfa0dc475a00c..132f2a6bb2e910 100644 --- a/doc/api/async_hooks.md +++ b/doc/api/async_hooks.md @@ -356,7 +356,7 @@ created, while `triggerAsyncId` shows *why* a resource was created. The following is a simple demonstration of `triggerAsyncId`: ```mjs -import { createHook, executionASyncId } from 'async_hooks'; +import { createHook, executionAsyncId } from 'async_hooks'; import { stdout } from 'process'; import net from 'net';