From 6af7e083695d5aa7056fd21eaa9d1588873b6713 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 30 Jul 2008 17:19:51 +0000 Subject: [PATCH] Fix whitespace The space after "\begin{code}" was confusing haddock --- GHC/IOBase.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.10.4