From b660d4cc3f0497b6ffd981857ffef68edec729ee Mon Sep 17 00:00:00 2001 From: Felipe Vargas Date: Sun, 8 May 2016 17:54:54 -0400 Subject: [PATCH] Add semicolon in arrow functions section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)**