From 19c514b70209490082600faac2bb71868f170bda Mon Sep 17 00:00:00 2001 From: kundan kumar Date: Sun, 12 Apr 2020 07:50:44 +0530 Subject: [PATCH] Fix/functional programming challange (#38516) * Improved readbility of FP challage * replace the with a * corrected gramatical mistake --- ...uments-to-avoid-external-dependence-in-a-function.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/functional-programming/pass-arguments-to-avoid-external-dependence-in-a-function.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/functional-programming/pass-arguments-to-avoid-external-dependence-in-a-function.english.md index de1ee6d11a..754af7a701 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/functional-programming/pass-arguments-to-avoid-external-dependence-in-a-function.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/functional-programming/pass-arguments-to-avoid-external-dependence-in-a-function.english.md @@ -18,7 +18,7 @@ Finally, the function would always produce the same output for the same set of i ## Instructions
Let's update the incrementer function to clearly declare its dependencies. -Write the incrementer function so it takes an argument, and then increases the value by one. +Write the incrementer function so it takes an argument, and then returns a result after increasing the value by one.
## Tests