aboutsummaryrefslogtreecommitdiff
path: root/src/HaddockHtml.hs
diff options
context:
space:
mode:
authordavve <davve@dtek.chalmers.se>2007-02-04 16:59:08 +0000
committerdavve <davve@dtek.chalmers.se>2007-02-04 16:59:08 +0000
commite93d48aff9e9b13f393e168e01b10de0bfd290f2 (patch)
treeca882232dedd88897511310a5a004d8e85c1f02a /src/HaddockHtml.hs
parentda89db72eeab2a8c4cc7e7a237350e758ef14cc5 (diff)
Render infix type constructors properly
Diffstat (limited to 'src/HaddockHtml.hs')
-rw-r--r--src/HaddockHtml.hs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/HaddockHtml.hs b/src/HaddockHtml.hs
index 2af6922d..59ca8501 100644
--- a/src/HaddockHtml.hs
+++ b/src/HaddockHtml.hs
@@ -1078,7 +1078,11 @@ expandField (HsFieldDecl ns ty doc) = [ HsFieldDecl [n] ty doc | n <- ns ]
ppDataHeader :: Bool -> NewOrData -> Name -> [Name] -> Html
ppDataHeader summary newOrData name tyvars =
(if newOrData == NewType then keyword "newtype" else keyword "data") <+>
- ppBinder summary name <+> hsep (map ppName tyvars)
+ (if infixConstr then ppName (tyvars!!0) <+> ppBinder summary name <+> ppName (tyvars!!1)
+ else ppBinder summary name <+> hsep (map ppName tyvars))
+ where
+ -- there should be a better way to check this using the GHC API
+ infixConstr = (head (nameOccString name) == ':') && (length tyvars == 2)
-- ----------------------------------------------------------------------------
-- Types and contexts