diff options
Diffstat (limited to 'src/Main.hs')
-rw-r--r-- | src/Main.hs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/Main.hs b/src/Main.hs index d1a94fd8..3c746863 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -165,12 +165,7 @@ main = handleTopExceptions $ do renderStep packages [] -------------------------------------------------------------------------------- --- Rendering -------------------------------------------------------------------------------- - - --- | Render the interfaces with whatever backend is specified in the flags +-- | Render the interfaces with whatever backend is specified in the flags. render :: [Flag] -> [Interface] -> [InstalledInterface] -> IO () render flags ifaces installedIfaces = do @@ -274,6 +269,7 @@ dumpInterfaceFile ifaces homeLinks flags = -- Creating a GHC session ------------------------------------------------------------------------------- + -- | Start a GHC session with the -haddock flag set. Also turn off -- compilation and linking. Then run the given 'Ghc' action. withGhc :: String -> [String] -> (DynFlags -> Ghc a) -> IO a |