diff --git a/README.md b/README.md index 41b95ff..ef738cb 100644 --- a/README.md +++ b/README.md @@ -136,7 +136,8 @@ array.filter(this.isGood, this); ``` ### `prefer-array-from` -Use `Array.from` instead of `[...iterable]` for performance benefits. +Use `Array.from` instead of `[...iterable]`. +See [`from-map`](#from-map) for additional benefits `Array.from` can provide over the spread syntax. This rule is auto fixable.