Removing a few trailing commas

This commit is contained in:
Josh Perez
2015-04-03 15:15:56 -07:00
parent a6a573e3cc
commit 22e3c89d04

View File

@@ -198,7 +198,7 @@
const obj = {
id: 5,
name: 'San Francisco',
[getKey('enabled')]: true,
[getKey('enabled')]: true
};
```
@@ -212,7 +212,7 @@
addValue: function (value) {
return atom.value + value;
},
}
};
// good
@@ -221,7 +221,7 @@
addValue(value) {
return atom.value + value;
},
}
};
```