diff options
author | Ian Lynagh <igloo@earth.li> | 2012-01-03 18:31:29 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-01-03 18:31:29 +0000 |
commit | 57491ab4ac6263d9d9a11e972e7a95c840c299de (patch) | |
tree | 0b895b6c41b6b3e6ddbd49cfc3aed9b389614897 /src/Haddock/Backends | |
parent | 949849c3fde2ea2838b143717f250c4cce9e026e (diff) |
Follow rename of Instance to ClsInst in GHC
Diffstat (limited to 'src/Haddock/Backends')
-rw-r--r-- | src/Haddock/Backends/Hoogle.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Haddock/Backends/Hoogle.hs b/src/Haddock/Backends/Hoogle.hs index 6e3e306a..593f03bc 100644 --- a/src/Haddock/Backends/Hoogle.hs +++ b/src/Haddock/Backends/Hoogle.hs @@ -150,7 +150,7 @@ ppClass x = out x{tcdSigs=[]} : (map (reL . HsTyVar . hsTyVarName . unL) (tcdTyVars x)) -ppInstance :: Instance -> [String] +ppInstance :: ClsInst -> [String] ppInstance x = [dropComment $ out x] |