diff --git a/README.md b/README.md
index 0f0e5c90..2a1209b0 100644
--- a/README.md
+++ b/README.md
@@ -590,7 +590,7 @@
});
```
- - [8.2](#8.2) If the function body fits on one line, feel free to omit the braces and use implicit return. Otherwise, add the braces and use a `return` statement.
+ - [8.2](#8.2) If the function body fits on one line and there is only a single argument, feel free to omit the braces and parenthesis, and use the implicit return. Otherwise, add the parenthesis, braces, and use a `return` statement.
> Why? Syntactic sugar. It reads well when multiple functions are chained together.
@@ -598,24 +598,12 @@
```javascript
// good
- [1, 2, 3].map((x) => x * x);
-
- // good
- [1, 2, 3].map((x) => {
- return { number: x };
- });
- ```
-
- - [8.3](#8.3) Always use parentheses around the arguments. Omitting the parentheses makes the functions less readable and only works for single arguments.
-
- > Why? These declarations read better with parentheses. They are also required when you have multiple parameters so this enforces consistency.
-
- ```javascript
- // bad
[1, 2, 3].map(x => x * x);
// good
- [1, 2, 3].map((x) => x * x);
+ [1, 2, 3].reduce((total, n) => {
+ return total + n;
+ }, 0);
```
**[⬆ back to top](#table-of-contents)**