From 55a93756ee34e390605f08a4efb1b01015c2253d Mon Sep 17 00:00:00 2001 From: Matthew Turner Date: Mon, 22 Jan 2018 14:29:18 +1100 Subject: [PATCH] doc: fix typo in async_hooks.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix typo in `async_hooks.executionAsyncId()` explanation. PR-URL: https://github.com/nodejs/node/pull/18286 Reviewed-By: Michaƫl Zasso Reviewed-By: Minwoo Jung Reviewed-By: Vse Mozhet Byt --- 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 fdc1158f22bc37..b22c2448046721 100644 --- a/doc/api/async_hooks.md +++ b/doc/api/async_hooks.md @@ -492,7 +492,7 @@ fs.open(path, 'r', (err, fd) => { }); ``` -The ID returned fom `executionAsyncId()` is related to execution timing, not +The ID returned from `executionAsyncId()` is related to execution timing, not causality (which is covered by `triggerAsyncId()`). For example: ```js