Fix/functional programming challange (#38516)

* Improved readbility of FP challage

* replace the with a

* corrected gramatical mistake
This commit is contained in:
kundan kumar
2020-04-12 07:50:44 +05:30
committed by GitHub
parent 8396b2bc8f
commit 19c514b702

View File

@ -18,7 +18,7 @@ Finally, the function would always produce the same output for the same set of i
## Instructions
<section id='instructions'>
Let's update the <code>incrementer</code> function to clearly declare its dependencies.
Write the <code>incrementer</code> function so it takes an argument, and then increases the value by one.
Write the <code>incrementer</code> function so it takes an argument, and then returns a result after increasing the value by one.
</section>
## Tests