Fix example for section 7.11

The missing newline caused the markdown parser to misinterpret the beginning and end of the code block.
This commit is contained in:
Jon Abrams
2015-12-03 14:37:52 -08:00
parent 4c0a70e435
commit a31c72a1e5

View File

@@ -601,6 +601,7 @@ Other Style Guides
- [7.11](#7.11) <a name="7.11"></a> Spacing in a function signature.
> Why? Consistency is good, and you shouldnt have to add or remove a space when adding or removing a name.
```javascript
// bad
const f = function(){};