summaryrefslogtreecommitdiff
path: root/compiler/utils/StringBuffer.lhs
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2009-04-07 14:30:57 +0000
committerIan Lynagh <igloo@earth.li>2009-04-07 14:30:57 +0000
commit2a21b894d36ad83797bd46aa683297c3d466d3bb (patch)
treef681d464a1b4ae29226cc5e3483321b93fb2bf26 /compiler/utils/StringBuffer.lhs
parent6c06fdc7ad20682f0f52b5a78e5e3487a2ed047b (diff)
downloadhaskell-2a21b894d36ad83797bd46aa683297c3d466d3bb.tar.gz
Tweak a Show instance
Diffstat (limited to 'compiler/utils/StringBuffer.lhs')
-rw-r--r--compiler/utils/StringBuffer.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/StringBuffer.lhs b/compiler/utils/StringBuffer.lhs
index 3b2a3df2c8..1aead2d74b 100644
--- a/compiler/utils/StringBuffer.lhs
+++ b/compiler/utils/StringBuffer.lhs
@@ -79,7 +79,7 @@ data StringBuffer
instance Show StringBuffer where
showsPrec _ s = showString "<stringbuffer("
. shows (len s) . showString "," . shows (cur s)
- . showString ">"
+ . showString ")>"
-- -----------------------------------------------------------------------------
-- Creation / Destruction