From: Ian Lynagh Date: Wed, 30 Jul 2008 17:19:51 +0000 (+0000) Subject: Fix whitespace X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=6af7e083695d5aa7056fd21eaa9d1588873b6713;p=ghc-base.git Fix whitespace The space after "\begin{code}" was confusing haddock --- diff --git a/GHC/IOBase.lhs b/GHC/IOBase.lhs index 58e5ec3..986cde6 100644 --- a/GHC/IOBase.lhs +++ b/GHC/IOBase.lhs @@ -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