Browse Source

doc: fix entryTypes type and missing link

PR-URL: https://github.com/nodejs/node/pull/15406
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
canary-base
Mani Maghsoudlou 8 years ago
committed by Ruben Bridgewater
parent
commit
049a8d7c1d
No known key found for this signature in database GPG Key ID: F07496B3EB3C1762
  1. 3
      doc/api/perf_hooks.md

3
doc/api/perf_hooks.md

@ -202,7 +202,7 @@ const obs = new PerformanceObserver((list) => {
obs.disconnect();
performance.clearFunctions();
});
obs.observe({ entryTypes: 'function' });
obs.observe({ entryTypes: ['function'] });
// A performance timeline entry will be created
wrapped();
@ -655,4 +655,5 @@ require('some-module');
```
[`timeOrigin`]: https://w3c.github.io/hr-time/#dom-performance-timeorigin
[Async Hooks]: async_hooks.html
[W3C Performance Timeline]: https://w3c.github.io/performance-timeline/

Loading…
Cancel
Save