Skip to content

Commit 51510a4

Browse files
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 =>
1 parent 784d029 commit 51510a4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1216,7 +1216,7 @@ Other Style Guides
12161216
```javascript
12171217
if ([0] && []) {
12181218
// true
1219-
// An array (even an empty one) is an object, objects will evaluate to true
1219+
// an array (even an empty one) is an object, objects will evaluate to true
12201220
}
12211221
```
12221222
@@ -1828,7 +1828,7 @@ Other Style Guides
18281828
- [21.2](#21.2) <a name='21.2'></a> Strings:
18291829
18301830
```javascript
1831-
// => this.reviewScore = 9;
1831+
// => this.reviewScore = 9;
18321832
18331833
// bad
18341834
const totalScore = this.reviewScore + '';

0 commit comments

Comments
 (0)