[project @ 2003-07-08 16:22:52 by panne]
authorpanne <unknown>
Tue, 8 Jul 2003 16:22:53 +0000 (16:22 +0000)
committerpanne <unknown>
Tue, 8 Jul 2003 16:22:53 +0000 (16:22 +0000)
Fixed some more Haddock links.

Control/Exception.hs
GHC/IOBase.lhs

index 3b24614..9da6ac5 100644 (file)
@@ -165,7 +165,7 @@ INSTANCE_TYPEABLE0(AsyncException,asyncExceptionTc,"AsyncException")
 --
 -- Also note that The "Prelude" also exports a
 -- function called 'catch' which has the same type as
--- 'Exception.catch', the difference being that the
+-- 'Control.Exception.catch', the difference being that the
 -- "Prelude" version only catches the IO and user
 -- families of exceptions (as required by Haskell 98).  We recommend
 -- either hiding the "Prelude" version of
@@ -421,7 +421,7 @@ The primary source of asynchronous exceptions, however, is
 
 >  throwTo :: ThreadId -> Exception -> IO ()
 
-'throwTo' (also 'throwDynTo' and 'Concurrent.killThread') allows one
+'throwTo' (also 'throwDynTo' and 'Control.Concurrent.killThread') allows one
 running thread to raise an arbitrary exception in another thread.  The
 exception is therefore asynchronous with respect to the target thread,
 which could be doing anything at the time it receives the exception.
index 7b8fef5..43073c0 100644 (file)
@@ -546,8 +546,8 @@ data Exception
        -- argument of 'ErrorCall' is the string passed to 'error' when it was
        -- called.
   | ExitException      ExitCode
-       -- ^The 'ExitException' exception is thrown by 'System.exitWith' (and
-       -- 'System.exitFailure').  The 'ExitCode' argument is the value passed 
+       -- ^The 'ExitException' exception is thrown by 'System.Exit.exitWith' (and
+       -- 'System.Exit.exitFailure').  The 'ExitCode' argument is the value passed 
        -- to 'System.exitWith'.  An unhandled 'ExitException' exception in the
        -- main thread will cause the program to be terminated with the given 
        -- exit code.