diff options
author | David Waern <david.waern@gmail.com> | 2009-01-24 16:54:39 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2009-01-24 16:54:39 +0000 |
commit | 290bb64e3cef92d60c37afa74ef38b4763c151fa (patch) | |
tree | b53dcff97c227749d3e8340d11e867cbcb4dbcaa /src | |
parent | ea8d9cd336950bca02cafc1d04eba0e5b74455e0 (diff) |
Correct spelling mistake in error message
Diffstat (limited to 'src')
-rw-r--r-- | src/Haddock/Interface.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Haddock/Interface.hs b/src/Haddock/Interface.hs index 49eef96c..d33d322d 100644 --- a/src/Haddock/Interface.hs +++ b/src/Haddock/Interface.hs @@ -114,7 +114,7 @@ createInterfaces' session modules flags instIfaceMap = do mbGraph <- depanal session [] False modgraph <- case mbGraph of Just graph -> return graph - Nothing -> throwE "Failed to create dependecy graph" + Nothing -> throwE "Failed to create dependency graph" let orderedMods = flattenSCCs $ topSortModuleGraph False modgraph Nothing (ifaces, _) <- foldM (\(ifaces, modMap) modsum -> do x <- processModule session modsum flags modMap instIfaceMap |