Skip to content

Commit 0f020a6

Browse files
committed
Add newlines at end of file
1 parent 4d6e953 commit 0f020a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

message-index/messages/GHC-59692/multipleInstances/after/MultipleInstances.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ instance Semigroup Sum where
88
newtype Product = Product { getProduct :: Int }
99

1010
instance Semigroup Product where
11-
(<>) x y = Product (getProduct x * getProduct y)
11+
(<>) x y = Product (getProduct x * getProduct y)

message-index/messages/GHC-59692/multipleInstances/before/MultipleInstances.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ instance Semigroup Int where
44
(<>) = (+)
55

66
instance Semigroup Int where
7-
(<>) = (*)
7+
(<>) = (*)

0 commit comments

Comments
 (0)