Skip to content

Commit

Permalink
Merge pull request getify#1008 from nicholaslee119/master
Browse files Browse the repository at this point in the history
remove unnecessary indents
  • Loading branch information
getify authored Aug 15, 2017
2 parents e342ec4 + 19d0b7d commit 0d79079
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions types & grammar/ch4.md
Original file line number Diff line number Diff line change
Expand Up @@ -1069,10 +1069,10 @@ function onlyOne() {
var a = true;
var b = false;

onlyOne( b, a ); // true
onlyOne( b, a, b, b, b ); // true
onlyOne( b, a ); // true
onlyOne( b, a, b, b, b ); // true

onlyOne( b, b ); // false
onlyOne( b, b ); // false
onlyOne( b, a, b, b, b, a ); // false
```

Expand Down Expand Up @@ -1135,7 +1135,7 @@ while (c) {
}

c = d ? a : b;
c; // "abc"
c; // "abc"

if ((a && d) || c) {
console.log( "yep" ); // yep
Expand Down

0 comments on commit 0d79079

Please sign in to comment.