doc: fix typo in async_hooks.md

Fix typo in `async_hooks.executionAsyncId()` explanation.

PR-URL: https://github.com/nodejs/node/pull/18286
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Minwoo Jung <minwoo@nodesource.com>
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
This commit is contained in:
Matthew Turner 2018-01-22 14:29:18 +11:00 committed by Vse Mozhet Byt
parent 8803b69c72
commit 55a93756ee

View File

@ -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