benchmark,doc,lib: capitalize more comments

PR-URL: https://github.com/nodejs/node/pull/26849
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
This commit is contained in:
Ruben Bridgewater 2019-03-22 03:44:26 +01:00
parent fd992e6e36
commit b08a867d60
No known key found for this signature in database
GPG key ID: F07496B3EB3C1762
232 changed files with 466 additions and 473 deletions

View file

@ -27,7 +27,7 @@ const url = require('url');
let testURL;
// make sure the basics work
// Make sure the basics work
function check(request) {
// Default method should still be 'GET'
assert.strictEqual(request.method, 'GET');
@ -39,7 +39,7 @@ function check(request) {
}
const server = http.createServer(function(request, response) {
// run the check function
// Run the check function
check(request);
response.writeHead(200, {});
response.end('ok');