summaryrefslogtreecommitdiff
path: root/test/parallel/test-domain-multi.js
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2019-03-07 01:03:53 +0100
committerRuben Bridgewater <ruben@bridgewater.de>2019-03-10 00:44:40 +0100
commitf8763bb077db2f0be74e353c0b4f9e353c0fffa8 (patch)
treec73128074daa65d2e72e4d2a86a5b08059888144 /test/parallel/test-domain-multi.js
parent01a5300f3f4f788a043f6b5fe72e2b7b641dfb6c (diff)
downloadandroid-node-v8-f8763bb077db2f0be74e353c0b4f9e353c0fffa8.tar.gz
android-node-v8-f8763bb077db2f0be74e353c0b4f9e353c0fffa8.tar.bz2
android-node-v8-f8763bb077db2f0be74e353c0b4f9e353c0fffa8.zip
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 'test/parallel/test-domain-multi.js')
-rw-r--r--test/parallel/test-domain-multi.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/parallel/test-domain-multi.js b/test/parallel/test-domain-multi.js
index 45d94b35a1..63701150f8 100644
--- a/test/parallel/test-domain-multi.js
+++ b/test/parallel/test-domain-multi.js
@@ -27,7 +27,7 @@ const domain = require('domain');
const http = require('http');
const a = domain.create();
-a.enter(); // this will be our "root" domain
+a.enter(); // This will be our "root" domain
a.on('error', common.mustNotCall());
@@ -62,11 +62,11 @@ const server = http.createServer((req, res) => {
const c = domain.create();
const req = http.get({ host: 'localhost', port: server.address().port });
- // add the request to the C domain
+ // Add the request to the C domain
c.add(req);
req.on('response', (res) => {
- // add the response object to the C domain
+ // Add the response object to the C domain
c.add(res);
res.pipe(process.stdout);
});