From ebb58195d8245d872d74ff33aad65b3d077827fb Mon Sep 17 00:00:00 2001 From: Robert Mennell Date: Fri, 22 Dec 2017 18:54:23 -0800 Subject: [PATCH] Fix the description to be a bit more proper --- snippets/flatten.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/flatten.md b/snippets/flatten.md index deca1d752..4542d6b18 100644 --- a/snippets/flatten.md +++ b/snippets/flatten.md @@ -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 );