1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-10-05 16:37:53 +03:00

mtl.md - typo

This commit is contained in:
endgame 2023-05-29 10:38:31 +10:00 committed by GitHub
parent 862f30e251
commit 5cc757153a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,7 +106,7 @@ Let's look at this closely:
Applicative (Compose f g)` in
[`Data.Functor.Compose`](https://hackage.haskell.org/package/base-4.12.0.0/docs/Data-Functor-Compose.html#t:Compose).
3. The `Monad` instance is pattern-matching some `Either`-flavoued
3. The `Monad` instance is pattern-matching some `Either`-flavoured
stuff, and calling `(>>=)`. It is using no `IO`-specific features.
This means that we can generalise `AppM` over any underlying monad: