From 95262b249dbfdcaabf00e272ff2433caa2e867c1 Mon Sep 17 00:00:00 2001 From: Siarhei Date: Tue, 25 Sep 2018 10:13:32 +0400 Subject: [PATCH] Fix takeRightWhile doc --- snippets/takeRightWhile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/takeRightWhile.md b/snippets/takeRightWhile.md index 670dfbd67..e62b63940 100644 --- a/snippets/takeRightWhile.md +++ b/snippets/takeRightWhile.md @@ -2,7 +2,7 @@ Removes elements from the end of an array until the passed function returns `true`. Returns the removed elements. -Loop through the array, using a `Array.prototype.reduceRight` and accumulate element if function returns falsy value. +Loop through the array, using a `Array.reduceRight` and accumulate element if function returns falsy value. ```js const takeRightWhile = (arr, func) => arr.reduceRight((acc, el) => func(el) ? acc : [el, ...acc], []);