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.
2 parents 4cadab8 + 54c0111 commit 4cab01cCopy full SHA for 4cab01c
src/Data/Tuple.purs
@@ -6,7 +6,7 @@ import Data.Monoid
6
data Tuple a b = Tuple a b
7
8
instance showTuple :: (Show a, Show b) => Show (Tuple a b) where
9
- show (Tuple a b) = "Tuple(" ++ show a ++ ", " ++ show b ++ ")"
+ show (Tuple a b) = "Tuple (" ++ show a ++ ") (" ++ show b ++ ")"
10
11
instance eqTuple :: (Eq a, Eq b) => Eq (Tuple a b) where
12
(==) (Tuple a1 b1) (Tuple a2 b2) = a1 == a2 && b1 == b2
0 commit comments