Skip to content

Commit fbebeb5

Browse files
committed
Undo Eq and Ord links.
1 parent 3d207f4 commit fbebeb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Data/HashSet.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ fromList ["Map","HashSet","Graph","HashMap","Set","Sequence"]
6161
=== Using custom data with HashSet
6262
6363
To create a @HashSet@ of your custom type, the type must have instances for
64-
"Data.Eq.Eq" and "Data.Hashable". The @Hashable@ typeclass is defined in the
64+
"Data.Eq" and "Data.Hashable". The @Hashable@ typeclass is defined in the
6565
<https://hackage.haskell.org/package/hashable hashable> package, see the
6666
documentation for information on how to make your type an instance of
6767
"Data.Hashable".
@@ -84,7 +84,7 @@ fromList [Person {name = "Simon", likesDogs = True},Person {name = "Lana", likes
8484
== Performance
8585
8686
The implementation is based on /hash array mapped tries/. A
87-
'HashSet' is often faster than other "Data.Ord.Ord"-based set types,
87+
'HashSet' is often faster than other "Data.Ord"-based set types,
8888
especially when value comparisons are expensive, as in the case of
8989
strings.
9090

0 commit comments

Comments
 (0)