diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2012-03-14 17:35:42 +0000 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2012-03-16 14:18:22 +0000 |
commit | cc86b10577d0dcecd5c86102cb601caa474d3d6a (patch) | |
tree | f8a90fb0ed278712c97f0837c395f63d2ed64b79 /src/Haddock/Backends/Xhtml/Decl.hs | |
parent | 7b381312437410b3d86ae5e18b951a551213bad8 (diff) |
Follow changes to tcdKindSig (Trac #5937)
Diffstat (limited to 'src/Haddock/Backends/Xhtml/Decl.hs')
-rw-r--r-- | src/Haddock/Backends/Xhtml/Decl.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Haddock/Backends/Xhtml/Decl.hs b/src/Haddock/Backends/Xhtml/Decl.hs index 71bcd581..28955c22 100644 --- a/src/Haddock/Backends/Xhtml/Decl.hs +++ b/src/Haddock/Backends/Xhtml/Decl.hs @@ -164,7 +164,7 @@ ppTyFamHeader summary associated decl unicode qual = ppTyClBinderWithVars summary decl <+> case tcdKindSig decl of - Just kind -> dcolon unicode <+> ppLKind unicode qual kind + Just (HsBSig kind _) -> dcolon unicode <+> ppLKind unicode qual kind Nothing -> noHtml |