diff options
author | David Waern <david.waern@gmail.com> | 2009-07-06 21:22:42 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2009-07-06 21:22:42 +0000 |
commit | db1f0bf4cc035562820233965e7b2845ed867c2e (patch) | |
tree | 3507a24858864b1fcabb2ffefd03e044f5bfd793 /src | |
parent | 25b78bc0619d55c1662513c412c0193778a885c1 (diff) |
Fix (invisible) bug introduced by unicode patch
Diffstat (limited to 'src')
-rw-r--r-- | src/Haddock/Backends/Html.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Haddock/Backends/Html.hs b/src/Haddock/Backends/Html.hs index 3c25a429..9ad8f9da 100644 --- a/src/Haddock/Backends/Html.hs +++ b/src/Haddock/Backends/Html.hs @@ -1316,7 +1316,7 @@ ppConstrHdr :: HsExplicitForAll -> [Name] -> HsContext DocName -> Bool -> Html ppConstrHdr forall tvs ctxt unicode = (if null tvs then noHtml else ppForall) +++ - (if null ctxt then noHtml else ppContextNoArrow ctxt unicode <+> darrow unicode <+> toHtml " ") + (if null ctxt then noHtml else ppContextNoArrow ctxt unicode <+> darrow unicode +++ toHtml " ") where ppForall = case forall of Explicit -> forallSymbol unicode <+> hsep (map ppName tvs) <+> toHtml ". " |