From b33aa039d8a1c87d7be28f670de25a2b2a83dc8b Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 1 May 2022 19:47:53 +0100 Subject: [PATCH] docs(flat): correct grammar --- subjects/flat/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subjects/flat/README.md b/subjects/flat/README.md index b855054c..16a772c6 100644 --- a/subjects/flat/README.md +++ b/subjects/flat/README.md @@ -2,15 +2,15 @@ ### Instructions -Create the `flat` functions that works like the `.flat` array method +Create a function named `flat` that works like `Array.flat()`, except its first argument is the array. ### Notions -- [devdocs.io/javascript/global_objects/array/flat](https://devdocs.io/javascript/global_objects/array/flat) +- [Flat](https://devdocs.io/javascript/global_objects/array/flat) ### Code provided -> all code provided will be added to your solution and doesn't need to be submited. +> The provided code will be added to your solution, and does not need to be submitted. ```js Array.prototype.flat = undefined