Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2019-03-07 03:03:53 +0300
committerRuben Bridgewater <ruben@bridgewater.de>2019-03-10 02:44:40 +0300
commitf8763bb077db2f0be74e353c0b4f9e353c0fffa8 (patch)
treec73128074daa65d2e72e4d2a86a5b08059888144 /doc/api/perf_hooks.md
parent01a5300f3f4f788a043f6b5fe72e2b7b641dfb6c (diff)
benchmark,doc,lib,test: capitalize comments
PR-URL: https://github.com/nodejs/node/pull/26483 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Diffstat (limited to 'doc/api/perf_hooks.md')
-rw-r--r--doc/api/perf_hooks.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/perf_hooks.md b/doc/api/perf_hooks.md
index 687cdae3aa3..666734cf14c 100644
--- a/doc/api/perf_hooks.md
+++ b/doc/api/perf_hooks.md
@@ -331,7 +331,7 @@ const {
} = require('perf_hooks');
const obs = new PerformanceObserver((list, observer) => {
- // Called three times synchronously. list contains one item
+ // Called three times synchronously. `list` contains one item.
});
obs.observe({ entryTypes: ['mark'] });
@@ -346,7 +346,7 @@ const {
} = require('perf_hooks');
const obs = new PerformanceObserver((list, observer) => {
- // called once. list contains three items
+ // Called once. `list` contains three items.
});
obs.observe({ entryTypes: ['mark'], buffered: true });