1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-24 18:32:22 +00:00

remove a space, indent properly.

This commit is contained in:
catwarrior 2016-01-22 18:46:23 +08:00
parent f5d01f117d
commit bdd163048c

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';
```