From da41dad6703beb21f92be87394bd21d1fc1d4129 Mon Sep 17 00:00:00 2001 From: Matthew Turner Date: Mon, 22 Jan 2018 14:29:18 +1100 Subject: [PATCH] Fix: Typo in in async_hooks.triggerAsyncId explanation --- 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