diff --git a/libraries/ghc-prim/GHC/Classes.hs b/libraries/ghc-prim/GHC/Classes.hs index 9a76e679d35659332328be28db95ec250ea410a3..420e08f54c2898318fb72fce6020e78c5824f359 100644 --- a/libraries/ghc-prim/GHC/Classes.hs +++ b/libraries/ghc-prim/GHC/Classes.hs @@ -141,9 +141,6 @@ and @('>=')@ for the types in "GHC.Word" and "GHC.Int". -- [__Extensionality__]: if @x == y@ = 'True' and @f@ is a function -- whose return type is an instance of 'Eq', then @f x == f y@ = 'True' -- [__Negation__]: @x /= y@ = @not (x == y)@ --- --- Minimal complete definition: either '==' or '/='. --- class Eq a where (==), (/=) :: a -> a -> Bool