In the Waterfall fx solution README.md I have changed these variables so they are consistent with the challenge's README.md:
In the challenge the fx parameters are written like this: function waterfall(arg, tasks, cb) {
In the solution the fx parameters are written like this: function waterfall(args, tasks, cb) {
I think this is unnecessarily confusing to changeup var names so modifying the solution:
In the Waterfall fx solution README.md I have changed these variables so they are consistent with the challenge's README.md:
In the challenge the fx parameters are written like this:
function waterfall(arg, tasks, cb) {
In the solution the fx parameters are written like this:function waterfall(args, tasks, cb) {
I think this is unnecessarily confusing to changeup var names so modifying the solution:
args -> arg; arg-> newArg;