diff options
author | David Waern <david.waern@gmail.com> | 2009-11-28 15:36:36 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2009-11-28 15:36:36 +0000 |
commit | 58ea54a02a6e535c2a24665e8f54d87aaf7598f8 (patch) | |
tree | 78126f74e22afd6481fff571fe7a61ae44d48d6b | |
parent | a98327828d33ac5855d2503277b4a49f93aba4fc (diff) |
Rename Distribution.Haddock into Documentation.Haddock
-rw-r--r-- | haddock.cabal | 4 | ||||
-rw-r--r-- | src/Documentation/Haddock.hs (renamed from src/Distribution/Haddock.hs) | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/haddock.cabal b/haddock.cabal index 46634109..fc61172a 100644 --- a/haddock.cabal +++ b/haddock.cabal @@ -119,7 +119,9 @@ library hs-source-dirs: src extensions: CPP, PatternGuards, DeriveDataTypeable, ScopedTypeVariables, MagicHash - exposed-modules: Distribution.Haddock + exposed-modules: + Documentation.Haddock + other-modules: Haddock.Types Haddock.InterfaceFile diff --git a/src/Distribution/Haddock.hs b/src/Documentation/Haddock.hs index 8057ef4b..13bbc543 100644 --- a/src/Distribution/Haddock.hs +++ b/src/Documentation/Haddock.hs @@ -5,7 +5,7 @@ -- -module Distribution.Haddock ( +module Documentation.Haddock ( readInterfaceFile, nameCacheFromGhc, freshNameCache, @@ -20,4 +20,3 @@ module Distribution.Haddock ( import Haddock.InterfaceFile import Haddock.Types - |