diff options
-rw-r--r-- | haskell.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell.html.markdown b/haskell.html.markdown index 0c8055d1..1e1eb65a 100644 --- a/haskell.html.markdown +++ b/haskell.html.markdown @@ -444,7 +444,7 @@ canProceedThrough t = t /= Red -- rather than types, assuming that the function only relies on -- features of the typeclass -isEqual (Eq a) => a -> a -> Bool +isEqual :: (Eq a) => a -> a -> Bool isEqual x y = x == y -- Note that x and y MUST be the same type, as they are both defined |