From bdd163048c8750aed66c6482b14c08b88305075e Mon Sep 17 00:00:00 2001 From: catwarrior Date: Fri, 22 Jan 2016 18:46:23 +0800 Subject: [PATCH] remove a space, indent properly. --- docs/style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/style.md b/docs/style.md index a73a6e3..9d9eb3f 100644 --- a/docs/style.md +++ b/docs/style.md @@ -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'; ```