diff --git a/subjects/flow/README.md b/subjects/flow/README.md index 0479561b..0ddd8a45 100644 --- a/subjects/flow/README.md +++ b/subjects/flow/README.md @@ -13,7 +13,7 @@ from lodash. const square = nbr => nbr * nbr const add2Numbers = (nbr1, nbr2) => nbr1 + nbr2 -const flowedFunctions = flow([add2numbers, square]) +const flowedFunctions = flow([add2Numbers, square]) flowedFunctions(2, 3) // -> 25 ```