aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavve <davve@dtek.chalmers.se>2006-09-15 18:05:45 +0000
committerdavve <davve@dtek.chalmers.se>2006-09-15 18:05:45 +0000
commitfcfbcf661f26f2a22a4b6a54d628d7d1ec2c358e (patch)
tree1828b49f51d9d45ba657aad76000975afe03d2e6
parentd2eedd954f844cd88b47026f415c4192bc051dd2 (diff)
Small source code cleanup
-rw-r--r--src/HaddockTypes.hs2
-rw-r--r--src/Main.hs4
2 files changed, 1 insertions, 5 deletions
diff --git a/src/HaddockTypes.hs b/src/HaddockTypes.hs
index d67c139a..d8295b39 100644
--- a/src/HaddockTypes.hs
+++ b/src/HaddockTypes.hs
@@ -37,7 +37,7 @@ data ExportItem2 name
(Maybe (HsDoc name)) -- ^ Maybe a doc comment
[InstHead2 name] -- ^ Instances relevant to this declaration
- | ExportNoDecl2 -- ^ An exported entity for which we have no
+ | ExportNoDecl2 -- ^ An exported entity for which we have no
-- documentation (perhaps because it resides in
-- another package)
Name -- ^ The original name
diff --git a/src/Main.hs b/src/Main.hs
index 7c6c9bc8..33913b51 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -32,10 +32,6 @@ import System.Environment ( getArgs )
import System.IO ( stderr, IOMode(..), openFile, hClose,
hGetContents, hPutStrLn )
import System.Directory ( doesFileExist, doesDirectoryExist )
-#if defined(mingw32_HOST_OS)
-import Foreign
-import Foreign.C
-#endif
import qualified Data.Map as Map
import Data.Map (Map)
import Data.FunctorM ( fmapM )