remove a space, indent properly.

This commit is contained in:
catwarrior
2016-01-22 18:46:23 +08:00
parent f5d01f117d
commit bdd163048c
+1 -1
View File
@@ -77,7 +77,7 @@ const b = 'foo' + a + 'bar';
const c = `foobar`;
// good
const a = 'foobar';
const a = 'foobar';
const b = `foo${a}bar`;
const c = 'foobar';
```