summaryrefslogtreecommitdiff
path: root/doc/api/async_hooks.md
diff options
context:
space:
mode:
authorMatthew Turner <ramesius@users.noreply.github.com>2018-01-22 14:29:18 +1100
committerVse Mozhet Byt <vsemozhetbyt@gmail.com>2018-01-22 13:47:10 +0200
commit55a93756ee34e390605f08a4efb1b01015c2253d (patch)
treee0a34da1e569bb930c6135c40dfc0453a05da901 /doc/api/async_hooks.md
parent8803b69c724e7b03ec0fc4c82b71575262487624 (diff)
downloadandroid-node-v8-55a93756ee34e390605f08a4efb1b01015c2253d.tar.gz
android-node-v8-55a93756ee34e390605f08a4efb1b01015c2253d.tar.bz2
android-node-v8-55a93756ee34e390605f08a4efb1b01015c2253d.zip
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>
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