lib,src: fix consistent spacing inside braces

PR-URL: https://github.com/nodejs/node/pull/14162
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Sebastiaan Deckers 2017-07-10 20:55:21 -04:00 committed by Refael Ackermann
parent 4f87522244
commit bb29405904
No known key found for this signature in database
GPG key ID: CD704BD80FDDDB64
293 changed files with 1108 additions and 1051 deletions

View file

@ -35,7 +35,7 @@ const nrequests_expected = 1;
const server = http.createServer(function(req, res) {
console.log(`req: ${JSON.stringify(url.parse(req.url))}`);
res.writeHead(200, {'Content-Type': 'text/plain'});
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.write('Hello World');
res.end();