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