Skip to content

Commit fc255e5

Browse files
committed
Removing trailing whitespace
1 parent 891f3c7 commit fc255e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Control/Monad/Free.purs.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ instance functorFree :: (Functor f) => Functor (Free f) where
1212
(<$>) f = go where
1313
go (Pure a) = Pure (f a)
1414
go (Free fa) = Free (go <$> fa)
15-
15+
1616
instance applicativeFree :: (Functor f) => Applicative (Free f) where
1717
pure = return
1818
(<*>) = ap

0 commit comments

Comments
 (0)