diff --git a/docs/functors-applicative-functors-and-monoids.html b/docs/functors-applicative-functors-and-monoids.html index 6d0c7bb..a9a92b9 100644 --- a/docs/functors-applicative-functors-and-monoids.html +++ b/docs/functors-applicative-functors-and-monoids.html @@ -327,7 +327,7 @@
The left list has three functions and the right list has three values, so the resulting list will have nine elements. Every function in the left list is applied to every function in the right one. If we have a list of functions that take two parameters, we can apply those functions between two lists.
+The left list has three functions and the right list has three values, so the resulting list will have nine elements. Every function in the left list is applied to every value in the right one. If we have a list of functions that take two parameters, we can apply those functions between two lists.
ghci> [(+),(*)] <*> [1,2] <*> [3,4] [4,5,5,6,3,4,6,8] diff --git a/markdown/source_md/functors-applicative-functors-and-monoids.md b/markdown/source_md/functors-applicative-functors-and-monoids.md index d93c175..e2928d0 100644 --- a/markdown/source_md/functors-applicative-functors-and-monoids.md +++ b/markdown/source_md/functors-applicative-functors-and-monoids.md @@ -681,7 +681,7 @@ ghci> [(*0),(+100),(^2)] <*> [1,2,3] ``` The left list has three functions and the right list has three values, so the resulting list will have nine elements. -Every function in the left list is applied to every function in the right one. +Every function in the left list is applied to every value in the right one. If we have a list of functions that take two parameters, we can apply those functions between two lists. ```{.haskell:hs}