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 4cadab8 commit 54c0111Copy full SHA for 54c0111
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