getify / Functional-Light-JS

Pragmatic, balanced FP in JavaScript. @FLJSBook on twitter.
http://FLJSBook.com
Other
16.6k stars 1.96k forks source link

Updated ch3.md . Removed nextCurried from arrow function arguments. #199

Closed rsgilbert closed 2 years ago

rsgilbert commented 2 years ago

Removed nextCurried from arrow function arguments.

Yes, I promise I've read the Contributions Guidelines (please feel free to remove this line -- if you leave this line here, I'm going to assume you didn't actually read it).

getify commented 2 years ago

That parameter is necessary since it's effectively a variable declaration (since the argument isn't used)... 2 lines later, that variable is assigned, so it's required to be declared.