Skip to content

Commit 0436f86

Browse files
committed
Merge pull request #180 from hzoo/patch-1
add whitespace to if statement
2 parents c82d063 + ccc176f commit 0436f86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,15 +292,15 @@ The following sections outline a _reasonable_ style guide for modern JavaScript
292292
function foo() {
293293
let foo,
294294
bar;
295-
if (condition) {
295+
if ( condition ) {
296296
bar = "";
297297
// statements
298298
}
299299
}
300300
// Good
301301
function foo() {
302302
let foo;
303-
if (condition) {
303+
if ( condition ) {
304304
let bar = "";
305305
// statements
306306
}

0 commit comments

Comments
 (0)