File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ New features:
10
10
11
11
Bugfixes:
12
12
- Removed unused constraint from ` Ord1 ` instance (#114 )
13
+ - Fix warnings revealed by v0.14.1 PS release (#115 by @JordanMartinez )
13
14
14
15
Other improvements:
15
16
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ instance traversableCofree :: Traversable f => Traversable (Cofree f) where
161
161
instance extendCofree :: Functor f => Extend (Cofree f ) where
162
162
extend f = loop
163
163
where
164
- loop (Cofree fa) = Cofree ((\(Tuple a b) -> Tuple (f (Cofree fa)) (loop <$> b)) <$> fa)
164
+ loop (Cofree fa) = Cofree ((\(Tuple _ b) -> Tuple (f (Cofree fa)) (loop <$> b)) <$> fa)
165
165
166
166
instance comonadCofree :: Functor f => Comonad (Cofree f ) where
167
167
extract = head
You can’t perform that action at this time.
0 commit comments