aboutsummaryrefslogtreecommitdiff
path: root/src/Haddock
diff options
context:
space:
mode:
authorDavid Waern <david.waern@gmail.com>2009-11-28 15:07:50 +0000
committerDavid Waern <david.waern@gmail.com>2009-11-28 15:07:50 +0000
commit16d4322c2615e807685e17205c8e41a350a21006 (patch)
tree7b6172895b5a1b2d6d247da26f1951961cef113f /src/Haddock
parent214f32e43e33285f2c3c05c55a4963d665e33e23 (diff)
Add a documentation header to Haddock.Convert
Diffstat (limited to 'src/Haddock')
-rw-r--r--src/Haddock/Convert.hs16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/Haddock/Convert.hs b/src/Haddock/Convert.hs
index 93b69844..9305d25e 100644
--- a/src/Haddock/Convert.hs
+++ b/src/Haddock/Convert.hs
@@ -1,7 +1,17 @@
{-# LANGUAGE PatternGuards #-}
-
--- This functionality may be moved into GHC at some point, and then
--- we can use the GHC version (#if GHC version is new enough).
+-----------------------------------------------------------------------------
+-- |
+-- Module : Haddock.Convert
+-- Copyright : (c) Isaac Dupree 2009,
+-- License : BSD-like
+--
+-- Maintainer : haddock@projects.haskell.org
+-- Stability : experimental
+-- Portability : portable
+--
+-- Conversion between TyThing and HsDecl. This functionality may be moved into
+-- GHC at some point.
+-----------------------------------------------------------------------------
-- Some other functions turned out to be useful for converting
-- instance heads, which aren't TyThings, so just export everything.