Skip to content

Commit e256c40

Browse files
Fix warnings revealed by v0.14.1 PS release (#48)
* Fix warnings revealed by v0.14.1 PS release * Update changelog
1 parent 3fb71a8 commit e256c40

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ New features:
1111
Bugfixes:
1212

1313
Other improvements:
14+
- Fix warnings revealed by v0.14.1 PS release (#48 by @JordanMartinez)
1415

1516
## [v6.0.0](https://github.com/purescript/purescript-tuples/releases/tag/v6.0.0) - 2021-02-26
1617

src/Data/Tuple.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ instance bindTuple :: (Semigroup a) => Bind (Tuple a) where
106106
instance monadTuple :: (Monoid a) => Monad (Tuple a)
107107

108108
instance extendTuple :: Extend (Tuple a) where
109-
extend f t@(Tuple a b) = Tuple a (f t)
109+
extend f t@(Tuple a _) = Tuple a (f t)
110110

111111
instance comonadTuple :: Comonad (Tuple a) where
112112
extract = snd

0 commit comments

Comments
 (0)