From bed738734145bb2735efb74edd3e967ef867e308 Mon Sep 17 00:00:00 2001 From: Chris Allen Date: Wed, 13 Aug 2014 13:45:36 -0500 Subject: [PATCH] formatting --- dialogues.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dialogues.md b/dialogues.md index 531d70e..03b1741 100644 --- a/dialogues.md +++ b/dialogues.md @@ -24,13 +24,13 @@ John Wiegley: Looking at the type of a fold: ```haskell - foldr :: (a -> b -> b) -> b -> [a] -> b +foldr :: (a -> b -> b) -> b -> [a] -> b ``` If we juggle the arguments we get: ```haskell - foldr :: (a -> b -> b) -> [a] -> b -> b +foldr :: (a -> b -> b) -> [a] -> b -> b ``` And if we imagine State b () actions, we can directly rewrite this as: