diff options
author | David Waern <unknown> | 2007-08-16 17:36:23 +0000 |
---|---|---|
committer | David Waern <unknown> | 2007-08-16 17:36:23 +0000 |
commit | 958797f5e0f8fd83519db6abfcec93700cd37c0a (patch) | |
tree | 68fe5ad5d84f3ff77cd533cd2d6fb633dd111e7c /src | |
parent | 152b16385d2908b90ea428cee091b39e6af9ae11 (diff) |
Correct comments
Diffstat (limited to 'src')
-rw-r--r-- | src/Main.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Main.hs b/src/Main.hs index 65f0b5eb..0592c6fe 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -1381,17 +1381,17 @@ getPackage session pkgInfo = do } --- | Try to create a HaddockPackage for each package in the session except for --- rts. Print a warning on stdout if a HaddockPackage could not be created. +-- | Try to create a HaddockPackage for each package. +-- Print a warning on stdout if a HaddockPackage could not be created. getPackages :: Session -> [PackageId] -> IO [HaddockPackage] getPackages session packages = do - -- get InstalledPackageInfos for every package in the session + -- get InstalledPackageInfos for each package dynflags <- getSessionDynFlags session let pkgInfos = map (getPackageDetails (pkgState dynflags)) packages -- try to read the installed haddock information (.haddock interface file and - -- html path) for the packages and html path + -- html path) for the packages liftM catMaybes $ mapM tryGetPackage pkgInfos where -- try to get a HaddockPackage, warn if we can't |