Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicataldo committed Jan 3, 2020
1 parent f6a09dc commit 6130cf8
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions docs/rules/indent.md
Expand Up @@ -281,7 +281,7 @@ Examples of **incorrect** code for this rule with the options `2, { "outerIIFEBo
})();


if(y) {
if (y) {
console.log('foo');
}
```
Expand All @@ -300,7 +300,7 @@ function foo(x) {
})();


if(y) {
if (y) {
console.log('foo');
}
```
Expand All @@ -326,13 +326,8 @@ function foo(x) {

})();


if (y) {
console.log('foo');
}

if (y) {
console.log('foo');
console.log('foo');
}
```

Expand Down

0 comments on commit 6130cf8

Please sign in to comment.