mirror of
https://github.com/nodejs/node.git
synced 2025-08-16 06:08:50 +02:00
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:
parent
fd992e6e36
commit
b08a867d60
232 changed files with 466 additions and 473 deletions
|
@ -26,12 +26,12 @@ const http = require('http');
|
|||
const url = require('url');
|
||||
|
||||
function check(request) {
|
||||
// a path should come over
|
||||
// A path should come over
|
||||
assert.strictEqual(request.url, '/asdf');
|
||||
}
|
||||
|
||||
const server = http.createServer(function(request, response) {
|
||||
// run the check function
|
||||
// Run the check function
|
||||
check(request);
|
||||
response.writeHead(200, {});
|
||||
response.end('ok');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue