From 99fff49607411bca9ce0a62d3b413110423afad9 Mon Sep 17 00:00:00 2001 From: Dominik Schrempf <dominik.schrempf@gmail.com> Date: Sat, 8 Jul 2023 16:54:52 +0200 Subject: [PATCH] ghc classes documentation: rm redundant comment --- libraries/ghc-prim/GHC/Classes.hs | 3 --- 1 file changed, 3 deletions(-) diff --git a/libraries/ghc-prim/GHC/Classes.hs b/libraries/ghc-prim/GHC/Classes.hs index 9a76e679d356..420e08f54c28 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 -- GitLab