aboutsummaryrefslogtreecommitdiff
path: root/src/Haddock/Interface/Create.hs
diff options
context:
space:
mode:
authorDavid Waern <david.waern@gmail.com>2009-09-06 18:57:45 +0000
committerDavid Waern <david.waern@gmail.com>2009-09-06 18:57:45 +0000
commitca0fb976d773c8bb1b4710ff1e32bb3363b6c4f0 (patch)
tree27c5e2eab11949785ebf4fcc2ca4a1fb661a7e09 /src/Haddock/Interface/Create.hs
parent6870e6ded2380a9a3749795980631e16e0c1406d (diff)
Move toHsInstHead to Haddock.Convert and call it synifyInstHead
Diffstat (limited to 'src/Haddock/Interface/Create.hs')
-rw-r--r--src/Haddock/Interface/Create.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Haddock/Interface/Create.hs b/src/Haddock/Interface/Create.hs
index 512c4e9e..298f96ac 100644
--- a/src/Haddock/Interface/Create.hs
+++ b/src/Haddock/Interface/Create.hs
@@ -514,7 +514,7 @@ mkExportItems modMap this_mod gre exported_names decls declMap
-- Aren't the .hi files always present?
return [ ExportNoDecl t [] ]
Just tyThing -> do
- let hsdecl = tyThingToHsSynSig tyThing
+ let hsdecl = tyThingToLHsDecl tyThing
-- This is not the ideal way to implement haddockumentation
-- for functions/values without explicit type signatures.
--