Skip to content

Commit b08a867

Browse files
committedMar 27, 2019
benchmark,doc,lib: capitalize more comments
PR-URL: #26849 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Vse Mozhet Byt <[email protected]>
1 parent fd992e6 commit b08a867

File tree

232 files changed

+466
-473
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

232 files changed

+466
-473
lines changed
 

‎benchmark/_cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function CLI(usage, settings) {
1616
if (!(this instanceof CLI)) return new CLI(usage, settings);
1717

1818
if (process.argv.length < 3) {
19-
this.abort(usage); // abort will exit the process
19+
this.abort(usage); // Abort will exit the process
2020
}
2121

2222
this.usage = usage;

‎benchmark/common.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ Benchmark.prototype.end = function(operations) {
202202
if (elapsed[0] === 0 && elapsed[1] === 0) {
203203
if (!process.env.NODEJS_BENCHMARK_ZERO_ALLOWED)
204204
throw new Error('insufficient clock precision for short benchmark');
205-
// avoid dividing by zero
205+
// Avoid dividing by zero
206206
elapsed[1] = 1;
207207
}
208208

0 commit comments

Comments
 (0)