summaryrefslogtreecommitdiff
path: root/test/async-hooks/verify-graph.js
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2018-12-10 13:27:32 +0100
committerRuben Bridgewater <ruben@bridgewater.de>2018-12-17 17:14:35 +0100
commit50dd555910ed0338c35f27ee57e947b9ec95724c (patch)
tree73a0d59eb5b1087afa4c42bc667bb268f1a23b72 /test/async-hooks/verify-graph.js
parentbe3ae339360c9833a77ebf5772786d75b7a8dd78 (diff)
downloadandroid-node-v8-50dd555910ed0338c35f27ee57e947b9ec95724c.tar.gz
android-node-v8-50dd555910ed0338c35f27ee57e947b9ec95724c.tar.bz2
android-node-v8-50dd555910ed0338c35f27ee57e947b9ec95724c.zip
doc,lib,test: capitalize comment sentences
This activates the eslint capitalize comment rule for comments above 50 characters. PR-URL: https://github.com/nodejs/node/pull/24996 Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/async-hooks/verify-graph.js')
-rw-r--r--test/async-hooks/verify-graph.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/async-hooks/verify-graph.js b/test/async-hooks/verify-graph.js
index 95c55c1595..42a45d3f50 100644
--- a/test/async-hooks/verify-graph.js
+++ b/test/async-hooks/verify-graph.js
@@ -14,7 +14,7 @@ function findInGraph(graph, type, n) {
}
function pruneTickObjects(activities) {
- // remove one TickObject on each pass until none is left anymore
+ // Remove one TickObject on each pass until none is left anymore
// not super efficient, but simplest especially to handle
// multiple TickObjects in a row
let foundTickObject = true;
@@ -31,7 +31,7 @@ function pruneTickObjects(activities) {
if (tickObjectIdx >= 0) {
foundTickObject = true;
- // point all triggerAsyncIds that point to the tickObject
+ // Point all triggerAsyncIds that point to the tickObject
// to its triggerAsyncId and finally remove it from the activities
const tickObject = activities[tickObjectIdx];
const newTriggerId = tickObject.triggerAsyncId;
@@ -48,7 +48,7 @@ function pruneTickObjects(activities) {
module.exports = function verifyGraph(hooks, graph) {
pruneTickObjects(hooks);
- // map actual ids to standin ids defined in the graph
+ // Map actual ids to standin ids defined in the graph
const idtouid = {};
const uidtoid = {};
const typeSeen = {};