mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 21:58:48 +02:00
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:
parent
4f87522244
commit
bb29405904
293 changed files with 1108 additions and 1051 deletions
|
@ -17,7 +17,7 @@ const agent = new http.Agent({
|
|||
|
||||
const server = http.createServer(common.mustCall((req, res) => {
|
||||
req.once('data', common.mustCallAtLeast(() => {
|
||||
res.writeHead(200, {'Content-Type': 'text/plain'});
|
||||
res.writeHead(200, { 'Content-Type': 'text/plain' });
|
||||
res.write('foo');
|
||||
}));
|
||||
req.on('end', common.mustCall(() => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue