Fix whitespace
authorIan Lynagh <igloo@earth.li>
Wed, 30 Jul 2008 17:19:51 +0000 (17:19 +0000)
committerIan Lynagh <igloo@earth.li>
Wed, 30 Jul 2008 17:19:51 +0000 (17:19 +0000)
The space after "\begin{code}" was confusing haddock

GHC/IOBase.lhs

index 58e5ec3..986cde6 100644 (file)
@@ -904,7 +904,7 @@ Now catch# has type
 (well almost; the compiler doesn't know about the IO newtype so we
 have to work around that in the definition of catchException below).
 
-\begin{code} 
+\begin{code}
 catchException :: Exception e => IO a -> (e -> IO a) -> IO a
 catchException (IO io) handler = IO $ catch# io handler'
     where handler' e = case fromException e of