Fix the description to be a bit more proper

This commit is contained in:
Robert Mennell
2017-12-22 18:54:23 -08:00
parent b76e9ba0bc
commit ebb58195d8

View File

@ -2,7 +2,7 @@
Flattens an array.
Using a new array we concatinate it with the spread input array causing a shallow flatten
Using a new array we concatinate it with the spread input array causing a shallow denesting of any contained arrays
```js
const flatten = arr => [ ].concat( ...arr );