Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit 0cfec31

Browse files
author
Jake Brownson
committed
Fix typo in name for semigroup instance
1 parent 81dad21 commit 0cfec31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Data/Set.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ instance ordSet :: (Ord a) => Ord (Set a) where
4646
instance monoidSet :: (Ord a) => Monoid (Set a) where
4747
mempty = empty
4848

49-
instance monoidSemigroup :: (Ord a) => Semigroup (Set a) where
49+
instance semigroupSet :: (Ord a) => Semigroup (Set a) where
5050
append = union
5151

5252
instance foldableSet :: Foldable Set where

0 commit comments

Comments
 (0)