diff --git a/Language/Haskell/GhcMod.hs b/Language/Haskell/GhcMod.hs index c07f0f7..16c9a6a 100644 --- a/Language/Haskell/GhcMod.hs +++ b/Language/Haskell/GhcMod.hs @@ -60,7 +60,7 @@ import Language.Haskell.GhcMod.Flag import Language.Haskell.GhcMod.Info import Language.Haskell.GhcMod.Lang import Language.Haskell.GhcMod.Lint -import Language.Haskell.GhcMod.List import Language.Haskell.GhcMod.Monad +import Language.Haskell.GhcMod.Modules import Language.Haskell.GhcMod.PkgDoc import Language.Haskell.GhcMod.Types diff --git a/Language/Haskell/GhcMod/Boot.hs b/Language/Haskell/GhcMod/Boot.hs index a95429c..7e261d5 100644 --- a/Language/Haskell/GhcMod/Boot.hs +++ b/Language/Haskell/GhcMod/Boot.hs @@ -4,8 +4,8 @@ import Control.Applicative import Language.Haskell.GhcMod.Browse import Language.Haskell.GhcMod.Flag import Language.Haskell.GhcMod.Lang -import Language.Haskell.GhcMod.List import Language.Haskell.GhcMod.Monad +import Language.Haskell.GhcMod.Modules -- | Printing necessary information for front-end booting. boot :: IOish m => GhcModT m String diff --git a/Language/Haskell/GhcMod/List.hs b/Language/Haskell/GhcMod/Modules.hs similarity index 95% rename from Language/Haskell/GhcMod/List.hs rename to Language/Haskell/GhcMod/Modules.hs index 6450e5e..cea00d7 100644 --- a/Language/Haskell/GhcMod/List.hs +++ b/Language/Haskell/GhcMod/Modules.hs @@ -1,4 +1,4 @@ -module Language.Haskell.GhcMod.List (modules) where +module Language.Haskell.GhcMod.Modules (modules) where import Control.Applicative ((<$>)) import Control.Exception (SomeException(..)) diff --git a/ghc-mod.cabal b/ghc-mod.cabal index 70b374e..94ee601 100644 --- a/ghc-mod.cabal +++ b/ghc-mod.cabal @@ -80,9 +80,9 @@ Library Language.Haskell.GhcMod.Info Language.Haskell.GhcMod.Lang Language.Haskell.GhcMod.Lint - Language.Haskell.GhcMod.List Language.Haskell.GhcMod.Logger Language.Haskell.GhcMod.Monad + Language.Haskell.GhcMod.Modules Language.Haskell.GhcMod.PkgDoc Language.Haskell.GhcMod.Read Language.Haskell.GhcMod.SrcUtils