[commit: ghc] master: System.IO.Error: Fix a documentation link to Control.Exception.Exception (bb3b71a)
git at git.haskell.org
git at git.haskell.org
Mon Feb 23 14:23:01 UTC 2015
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/bb3b71a02483bd119cd3fd9b7c4235681b92619f/ghc
>---------------------------------------------------------------
commit bb3b71a02483bd119cd3fd9b7c4235681b92619f
Author: Wieland Hoffmann <themineo at gmail.com>
Date: Mon Jan 5 16:44:30 2015 +0100
System.IO.Error: Fix a documentation link to Control.Exception.Exception
Instead of using double quotes (which are used to link to modules), use
single quotes (that are used to link, among others, to link to types,
which C.E.Exception is).
Signed-off-by: Austin Seipp <austin at well-typed.com>
>---------------------------------------------------------------
bb3b71a02483bd119cd3fd9b7c4235681b92619f
libraries/base/GHC/IO/Exception.hs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libraries/base/GHC/IO/Exception.hs b/libraries/base/GHC/IO/Exception.hs
index ed8c802..e9a32b6 100644
--- a/libraries/base/GHC/IO/Exception.hs
+++ b/libraries/base/GHC/IO/Exception.hs
@@ -246,7 +246,7 @@ ioError = ioException
-- | The Haskell 2010 type for exceptions in the 'IO' monad.
-- Any I\/O operation may raise an 'IOError' instead of returning a result.
-- For a more general type of exception, including also those that arise
--- in pure code, see "Control.Exception.Exception".
+-- in pure code, see 'Control.Exception.Exception'.
--
-- In Haskell 2010, this is an opaque type.
type IOError = IOException
More information about the ghc-commits
mailing list