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 /src/Documentation | |
parent | a98327828d33ac5855d2503277b4a49f93aba4fc (diff) |
Rename Distribution.Haddock into Documentation.Haddock
Diffstat (limited to 'src/Documentation')
-rw-r--r-- | src/Documentation/Haddock.hs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Documentation/Haddock.hs b/src/Documentation/Haddock.hs new file mode 100644 index 00000000..13bbc543 --- /dev/null +++ b/src/Documentation/Haddock.hs @@ -0,0 +1,22 @@ +-- +-- Haddock - A Haskell Documentation Tool +-- +-- (c) Simon Marlow 2003 +-- + + +module Documentation.Haddock ( + readInterfaceFile, + nameCacheFromGhc, + freshNameCache, + NameCacheAccessor, + InterfaceFile(..), + LinkEnv, + InstalledInterface(..), + DocName(..), + docNameOcc +) where + + +import Haddock.InterfaceFile +import Haddock.Types |