1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-28 21:32:20 +00:00

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
commit a8684f1f96

View File

@ -77,7 +77,7 @@ const b = 'foo' + a + 'bar';
const c = `foobar`; const c = `foobar`;
// good // good
const a = 'foobar'; const a = 'foobar';
const b = `foo${a}bar`; const b = `foo${a}bar`;
const c = 'foobar'; const c = 'foobar';
``` ```