Small whitespace fix.

This commit is contained in:
Andres Loeh 2016-01-28 11:07:59 +01:00
parent c532ecffd5
commit 2934bac40c

View File

@ -159,7 +159,7 @@ data Delayed :: * -> * where
-> Delayed c
instance Functor Delayed where
fmap f (Delayed a b c g) = Delayed a b c ((fmap.fmap.fmap) f g)
fmap f (Delayed a b c g) = Delayed a b c ((fmap . fmap . fmap) f g)
-- | Add a capture to the end of the capture block.
addCapture :: Delayed (a -> b)