From 178e62dd3a215d0977e76da9a3569d841086059f Mon Sep 17 00:00:00 2001 From: Chris Allen Date: Mon, 28 Jul 2014 23:14:11 -0500 Subject: [PATCH] spelling error, thanks @mwotton --- dialogues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dialogues.md b/dialogues.md index e42fed6..0480029 100644 --- a/dialogues.md +++ b/dialogues.md @@ -753,7 +753,7 @@ Arrows. Really quickly, here’s 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 ```