From a31c72a1e5fa56891b35bf63741b34868a66a9b3 Mon Sep 17 00:00:00 2001 From: Jon Abrams Date: Thu, 3 Dec 2015 14:37:52 -0800 Subject: [PATCH] Fix example for section 7.11 The missing newline caused the markdown parser to misinterpret the beginning and end of the code block. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a6158c41..cce04248 100644 --- a/README.md +++ b/README.md @@ -601,6 +601,7 @@ Other Style Guides - [7.11](#7.11) Spacing in a function signature. > Why? Consistency is good, and you shouldn’t have to add or remove a space when adding or removing a name. + ```javascript // bad const f = function(){};