From 241161f9afd7b6a4e9abfa5d8a3c43549537a40d Mon Sep 17 00:00:00 2001 From: Antti Holvikari Date: Sat, 18 Jul 2015 19:26:50 +0300 Subject: [PATCH] Remove Show instance for Char, we have that in Prelude --- src/Data/Char.purs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Data/Char.purs b/src/Data/Char.purs index 207890d..6174625 100644 --- a/src/Data/Char.purs +++ b/src/Data/Char.purs @@ -20,7 +20,3 @@ foreign import fromCharCode :: Int -> Char instance boundedChar :: Bounded Char where top = fromCharCode zero bottom = fromCharCode 65535 - --- | Characters can be rendered as a string with `show`. -instance showChar :: Show Char where - show c = "Char " ++ show (toString c)