spelling error, thanks @mwotton

This commit is contained in:
Chris Allen 2014-07-28 23:14:11 -05:00
parent 83c67c707c
commit 178e62dd3a

View File

@ -753,7 +753,7 @@ Arrows. Really quickly, heres Yoneda and Coyoneda (the “two” free
functors)
```haskell
newtype Yoneda f a = Yoenda { runYoneda :: forall b . (a -> b) -> f b }
newtype Yoneda f a = Yoneda { runYoneda :: forall b . (a -> b) -> f b }
data Coyoneda f b where Coyoneda :: f a -> (a -> b) -> Coyoneda f b
```