diff options
Diffstat (limited to 'haddock-api/src')
| -rw-r--r-- | haddock-api/src/Haddock/Backends/Hyperlinker/Ast.hs | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/haddock-api/src/Haddock/Backends/Hyperlinker/Ast.hs b/haddock-api/src/Haddock/Backends/Hyperlinker/Ast.hs index 3c96db98..c4a9091f 100644 --- a/haddock-api/src/Haddock/Backends/Hyperlinker/Ast.hs +++ b/haddock-api/src/Haddock/Backends/Hyperlinker/Ast.hs @@ -180,7 +180,7 @@ decls (group, _, _, _) = concatMap ($ group)          Nothing -> empty      fix term = case cast term of          Just ((GHC.FixitySig names _) :: GHC.FixitySig GHC.GhcRn) -          -> map decl names +          -> map (\(GHC.L sspan x) -> (sspan, RtkVar x)) names          Nothing -> empty      tyfam (GHC.L _ (GHC.FamilyDecl{..})) = [decl fdLName]      sig (GHC.L _ (GHC.TypeSig names _)) = map decl names  | 
