We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e96262a + 975e8c4 commit 088e13bCopy full SHA for 088e13b
src/Data/Maybe.purs
@@ -38,7 +38,7 @@ module Data.Maybe where
38
instance monadMaybe :: Monad Maybe
39
40
instance showMaybe :: (Show a) => Show (Maybe a) where
41
- show (Just x) = "Just " ++ (show x)
+ show (Just x) = "Just (" ++ show x ++ ")"
42
show Nothing = "Nothing"
43
44
instance eqMaybe :: (Eq a) => Eq (Maybe a) where
0 commit comments