diff options
author | David Waern <david.waern@gmail.com> | 2008-11-10 01:18:57 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2008-11-10 01:18:57 +0000 |
commit | c43da2cd1be804351100a599d0e6db5cc19cf747 (patch) | |
tree | dce5868e3f5c6d4905000cdbe698cf7c57352245 | |
parent | ae6560862e818880d4039063704884b2a1cc708f (diff) |
Export DocName in the library
-rw-r--r-- | haddock.cabal | 1 | ||||
-rw-r--r-- | src/Distribution/Haddock.hs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/haddock.cabal b/haddock.cabal index 9efad3d1..2769ba3c 100644 --- a/haddock.cabal +++ b/haddock.cabal @@ -131,6 +131,7 @@ library ScopedTypeVariables, MagicHash exposed-modules: Distribution.Haddock other-modules: + Haddock.DocName Haddock.Types Haddock.InterfaceFile Haddock.Exception diff --git a/src/Distribution/Haddock.hs b/src/Distribution/Haddock.hs index 62cf0d89..1f7768b4 100644 --- a/src/Distribution/Haddock.hs +++ b/src/Distribution/Haddock.hs @@ -13,7 +13,7 @@ module Distribution.Haddock ( InterfaceFile(..), LinkEnv, InstalledInterface(..), - DocName(..) + module DocName ) where |