diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2013-09-23 00:55:06 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2013-09-23 01:06:39 +0200 |
commit | 2ed1377a6d5f28006ff8ea2162129e5c57c64e30 (patch) | |
tree | dfbd002aca9f0a032bc5e1f2f60b3d7e2bed6204 /libraries/base/GHC/Desugar.hs | |
parent | 40c00afe77a442c4cdc1bb85fadbd57aea89abb8 (diff) | |
download | haskell-2ed1377a6d5f28006ff8ea2162129e5c57c64e30.tar.gz |
Remove obsolete pre-Haddock-2 `#hide` pragmas
The now obsolete (and redundant) `#hide` pragmas have been superseded by
`{-# OPTIONS_HADDOCK hide #-}` pragmas which are used by most of the
affected modules anyway.
This commit also adds proper `{-# OPTIONS_HADDOCK hide #-}` pragmas to
`GHC.Desugar` and `GHC.IO.Encoding.Iconv` which had only the ineffective
`#hide` annotation.
Signed-off-by: Herbert Valerio Riedel <hvr@gnu.org>
Diffstat (limited to 'libraries/base/GHC/Desugar.hs')
-rw-r--r-- | libraries/base/GHC/Desugar.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/Desugar.hs b/libraries/base/GHC/Desugar.hs index 72553bf089..cdea698851 100644 --- a/libraries/base/GHC/Desugar.hs +++ b/libraries/base/GHC/Desugar.hs @@ -3,6 +3,7 @@ , RankNTypes , ExistentialQuantification #-} +{-# OPTIONS_HADDOCK hide #-} ----------------------------------------------------------------------------- -- | @@ -18,7 +19,6 @@ -- ----------------------------------------------------------------------------- --- #hide module GHC.Desugar ((>>>), AnnotationWrapper(..), toAnnotationWrapper) where import Control.Arrow (Arrow(..)) |