Skip to content

Commit 4b7db09

Browse files
committed
Merge pull request #13 from jdegoes/tramp/unapplied
remove bogus constructor, unapply trampoline type synonym
2 parents c702d1b + 51a68d1 commit 4b7db09

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

MODULE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180

181181
### Types
182182

183-
type Trampoline a = Free Lazy a
183+
type Trampoline = Free Lazy
184184

185185

186186
### Values

src/Control/Comonad/Cofree.purs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module Control.Comonad.Cofree
22
( Cofree()
33
, mkCofree
4-
, mkCofree'
54
, head
65
, tail
76
) where

src/Control/Monad/Trampoline.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import Data.Lazy
1313
import Data.Foldable
1414
import Data.Traversable
1515

16-
type Trampoline a = Free Lazy a
16+
type Trampoline = Free Lazy
1717

1818
done :: forall a. a -> Trampoline a
1919
done = pure

0 commit comments

Comments
 (0)