diff --git a/README.md b/README.md index 246ad4c3..a5481c75 100644 --- a/README.md +++ b/README.md @@ -892,7 +892,7 @@ Other Style Guides const itemHeight = (item) => item.height > 256 ? item.largeSize : item.smallSize; // good - const itemHeight = (item) => { return item.height > 256 ? item.largeSize : item.smallSize; } + const itemHeight = (item) => { return item.height > 256 ? item.largeSize : item.smallSize; }; ``` **[⬆ back to top](#table-of-contents)**