From d6b8797947d8a0b3bc708a8fd9209261eaaf2a12 Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 15 May 2022 21:37:25 +0300 Subject: [PATCH] docs(for-each): correct grammar --- subjects/for-each/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/for-each/README.md b/subjects/for-each/README.md index 7428c22c..307325f1 100644 --- a/subjects/for-each/README.md +++ b/subjects/for-each/README.md @@ -2,7 +2,7 @@ ### Instructions -Create a `forEach` function that takes an array as the first argument, a function as the second argument, +Create a function named `forEach` which takes an array as the first argument, a function as the second argument, and that works like the `Array.prototype.forEach` method. ### Notions