Fix a typo in commas section

Example code block following blockquote(line 2223) was broken as a line break was missing. So I just added single blank line.
This commit is contained in:
Heejong Ahn
2016-08-28 23:09:11 +09:00
committed by GitHub
parent 1541503fd4
commit 6944be009c

View File

@@ -2221,6 +2221,7 @@ Other Style Guides
- [19.2](#commas--dangling) Additional trailing comma: **Yup.** eslint: [`comma-dangle`](http://eslint.org/docs/rules/comma-dangle.html) jscs: [`requireTrailingComma`](http://jscs.info/rule/requireTrailingComma)
> Why? This leads to cleaner git diffs. Also, transpilers like Babel will remove the additional trailing comma in the transpiled code which means you don't have to worry about the [trailing comma problem](es5/README.md#commas) in legacy browsers.
```javascript
// bad - git diff without trailing comma
const hero = {