From f4f5ce4b8549b1b4588e2973ba203e26dd3a5a71 Mon Sep 17 00:00:00 2001 From: Abhishek Kakade Date: Tue, 27 Nov 2018 02:05:14 +0530 Subject: [PATCH] fix: updated challenges text (#34458) --- .../use-the-rest-operator-with-function-parameters.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-the-rest-operator-with-function-parameters.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-the-rest-operator-with-function-parameters.english.md index c541f35d3a..1f6141b786 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-the-rest-operator-with-function-parameters.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-the-rest-operator-with-function-parameters.english.md @@ -14,7 +14,7 @@ The rest operator eliminates the need to check the args array and a ## Instructions
-Modify the function sum so that it uses the rest operator and it works in the same way with any number of parameters. +Modify the function sum using the rest parameter in such a way that the function sum is able to take any number of arguments and return their sum.
## Tests