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)