diff --git a/README.md b/README.md index d7b56aae..f3e09449 100644 --- a/README.md +++ b/README.md @@ -436,7 +436,7 @@ Other Style Guides const [first, second] = arr; ``` - - [5.3](#5.3) Use object destructuring for multiple return values, not array destructuring. + - [5.3](#5.3) Use object destructuring for multiple return values, not array destructuring. jscs: [`disallowArrayDestructuringReturn`](http://jscs.info/rule/disallowArrayDestructuringReturn) > Why? You can add new properties over time or change the order of things without breaking call sites.