diff options
author | David Waern <david.waern@gmail.com> | 2011-11-26 22:10:28 +0100 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2011-11-26 22:10:28 +0100 |
commit | 07c816c5e548824bb089442cf32d70682e47200b (patch) | |
tree | 5300bfd77bd12fbbfbf604844057d43f2d22eec6 /src/Haddock/Backends/Xhtml/Names.hs | |
parent | 638683cbe3d68427273ad71eeb8f704e165952fa (diff) |
Fix module reference bug.
Diffstat (limited to 'src/Haddock/Backends/Xhtml/Names.hs')
-rw-r--r-- | src/Haddock/Backends/Xhtml/Names.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Haddock/Backends/Xhtml/Names.hs b/src/Haddock/Backends/Xhtml/Names.hs index 19efea2e..7c2375cf 100644 --- a/src/Haddock/Backends/Xhtml/Names.hs +++ b/src/Haddock/Backends/Xhtml/Names.hs @@ -127,9 +127,9 @@ ppModule mdl = anchor ! [href (moduleUrl mdl)] << toHtml (moduleString mdl) -ppModuleRef :: Module -> String -> Html -ppModuleRef mdl ref = anchor ! [href (moduleUrl mdl ++ ref)] - << toHtml (moduleString mdl) +ppModuleRef :: ModuleName -> String -> Html +ppModuleRef mdl ref = anchor ! [href (moduleHtmlFile' mdl ++ ref)] + << toHtml (moduleNameString mdl) -- NB: The ref parameter already includes the '#'. -- This function is only called from markupModule expanding a -- DocModule, which doesn't seem to be ever be used. |