Skip to content

Commit 8d4e8fe

Browse files
criskellulysses4ever
authored andcommitted
Fix explanation in List applicative
Signed-off-by: criskell <[email protected]>
1 parent 2e11a78 commit 8d4e8fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

markdown/source_md/functors-applicative-functors-and-monoids.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ ghci> [(*0),(+100),(^2)] <*> [1,2,3]
681681
```
682682

683683
The left list has three functions and the right list has three values, so the resulting list will have nine elements.
684-
Every function in the left list is applied to every function in the right one.
684+
Every function in the left list is applied to every value in the right one.
685685
If we have a list of functions that take two parameters, we can apply those functions between two lists.
686686

687687
```{.haskell:hs}

0 commit comments

Comments
 (0)