Fixed capitalization and comment spacing

Fixed line 1219 to have a lowercase 'a' to be consistent with the style guide.
Fixed line 1831 to only have one space between the // and the =>
This commit is contained in:
Mark Sanghoon Kim
2016-01-27 23:14:53 -08:00
parent 784d029980
commit 51510a43c8

View File

@@ -1216,7 +1216,7 @@ Other Style Guides
```javascript
if ([0] && []) {
// true
// An array (even an empty one) is an object, objects will evaluate to true
// an array (even an empty one) is an object, objects will evaluate to true
}
```
@@ -1828,7 +1828,7 @@ Other Style Guides
- [21.2](#21.2) <a name='21.2'></a> Strings:
```javascript
// => this.reviewScore = 9;
// => this.reviewScore = 9;
// bad
const totalScore = this.reviewScore + '';