Skip to content

Commit bf9393c

Browse files
committed
Include parens in Show value
1 parent bd6bb6b commit bf9393c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Data/HTTP/Method.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ instance ordCustomMethod :: Ord CustomMethod where
9191
compare = gCompare
9292

9393
instance showCustomMethod :: Show CustomMethod where
94-
show (CustomMethod m) = "CustomMethod " <> show m
94+
show (CustomMethod m) = "(CustomMethod " <> show m <> ")"
9595

9696
fromString :: String -> Either Method CustomMethod
9797
fromString s =

0 commit comments

Comments
 (0)