Merge pull request #130 from catwarrior/patch-1

remove a space, indent properly.
This commit is contained in:
Ruan YiFeng
2016-01-24 20:58:06 +08:00
+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';
```