We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29e4885 commit fc5f8dcCopy full SHA for fc5f8dc
Data/HashMap/Base.hs
@@ -364,7 +364,7 @@ cmp cmpk cmpv t1 t2 = go (toList' t1 []) (toList' t2 [])
364
go [] [] = EQ
365
go [] _ = LT
366
go _ [] = GT
367
- go _ _ = error "cmp: Should never happend, toList' includes non Leaf / Collision"
+ go _ _ = error "cmp: Should never happen, toList' includes non Leaf / Collision"
368
369
leafCompare (L k v) (L k' v') = cmpk k k' `mappend` cmpv v v'
370
0 commit comments