summaryrefslogtreecommitdiff
path: root/doc/api/async_hooks.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/async_hooks.md')
-rw-r--r--doc/api/async_hooks.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md
index fdc1158f22..b22c244804 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