summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2019-11-30 06:52:35 -0800
committerRich Trott <rtrott@gmail.com>2019-12-02 08:28:19 -0800
commit8c101dec1778ffaf8a80f4b6ae06d495a2342bb0 (patch)
tree7aec73f4e4abdcd807e5b1b0a3a3dceaece0fe69 /doc
parentb27e2408af6683d34852221ae70b937b0f95943f (diff)
downloadandroid-node-v8-8c101dec1778ffaf8a80f4b6ae06d495a2342bb0.tar.gz
android-node-v8-8c101dec1778ffaf8a80f4b6ae06d495a2342bb0.tar.bz2
android-node-v8-8c101dec1778ffaf8a80f4b6ae06d495a2342bb0.zip
doc: fix typographical error
Insert missing word. PR-URL: https://github.com/nodejs/node/pull/30735 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/perf_hooks.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/perf_hooks.md b/doc/api/perf_hooks.md
index 3fcdd99509..1ccf3ee375 100644
--- a/doc/api/perf_hooks.md
+++ b/doc/api/perf_hooks.md
@@ -547,7 +547,7 @@ The standard deviation of the recorded event loop delays.
### Measuring the duration of async operations
The following example uses the [Async Hooks][] and Performance APIs to measure
-the actual duration of a Timeout operation (including the amount of time it
+the actual duration of a Timeout operation (including the amount of time it took
to execute the callback).
```js