Skip to content
Snippets Groups Projects
Commit 55cb2aa7 authored by MichaWiedenmann1's avatar MichaWiedenmann1 Committed by Marge Bot
Browse files

Fixes typo in documentation of the Semigroup instance of Equivalence

parent 7c2609d8
No related branches found
No related tags found
No related merge requests found
......@@ -280,7 +280,7 @@ newtype Equivalence a = Equivalence { getEquivalence :: a -> a -> Bool }
-- @
-- (<>) :: Equivalence a -> Equivalence a -> Equivalence a
-- Equivalence equiv <> Equivalence equiv' = Equivalence \a b ->
-- equiv a b && equiv a b
-- equiv a b && equiv' a b
-- @
Semigroup
, -- | @'mempty'@ on equivalences always returns @True@. Without
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment