[commas] fix bad git diff example

This commit is contained in:
Harrison Shoff
2015-04-29 10:42:03 -07:00
parent a2034b0f6c
commit 7ade95434c

View File

@@ -1477,7 +1477,8 @@
```javascript
// bad - git diff without trailing comma
const hero = {
- firstName: 'Bob',
firstName: 'Bob',
- lastName: 'Parr'
+ lastName: 'Parr',
+ heroName: 'Mr. Incredible'
}