Skip to content

Commit b660d4c

Browse files
committed
Add semicolon in arrow functions section
1 parent 03c5a1f commit b660d4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ Other Style Guides
892892
const itemHeight = (item) => item.height > 256 ? item.largeSize : item.smallSize;
893893

894894
// good
895-
const itemHeight = (item) => { return item.height > 256 ? item.largeSize : item.smallSize; }
895+
const itemHeight = (item) => { return item.height > 256 ? item.largeSize : item.smallSize; };
896896
```
897897
898898
**[⬆ back to top](#table-of-contents)**

0 commit comments

Comments
 (0)