We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fb71a8 commit e256c40Copy full SHA for e256c40
CHANGELOG.md
@@ -11,6 +11,7 @@ New features:
11
Bugfixes:
12
13
Other improvements:
14
+- Fix warnings revealed by v0.14.1 PS release (#48 by @JordanMartinez)
15
16
## [v6.0.0](https://github.com/purescript/purescript-tuples/releases/tag/v6.0.0) - 2021-02-26
17
src/Data/Tuple.purs
@@ -106,7 +106,7 @@ instance bindTuple :: (Semigroup a) => Bind (Tuple a) where
106
instance monadTuple :: (Monoid a) => Monad (Tuple a)
107
108
instance extendTuple :: Extend (Tuple a) where
109
- extend f t@(Tuple a b) = Tuple a (f t)
+ extend f t@(Tuple a _) = Tuple a (f t)
110
111
instance comonadTuple :: Comonad (Tuple a) where
112
extract = snd
0 commit comments