Skip to content

Commit d7e56fa

Browse files
committed
Fix reference to equal2
`equal` was renamed to `equal2` in #193.
1 parent f59bb26 commit d7e56fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Data/HashMap/Internal.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ cmp cmpk cmpv t1 t2 = go (toList' t1 []) (toList' t2 [])
452452

453453
leafCompare (L k v) (L k' v') = cmpk k k' `mappend` cmpv v v'
454454

455-
-- Same as 'equal' but doesn't compare the values.
455+
-- Same as 'equal2' but doesn't compare the values.
456456
equalKeys1 :: (k -> k' -> Bool) -> HashMap k v -> HashMap k' v' -> Bool
457457
equalKeys1 eq t1 t2 = go (toList' t1 []) (toList' t2 [])
458458
where

0 commit comments

Comments
 (0)