[commit: haddock] master: Track changes in HsSpliceTy data constructor (0f6a628)

git at git.haskell.org git at git.haskell.org
Mon Nov 25 17:25:40 UTC 2013


Repository : ssh://git@git.haskell.org/haddock

On branch  : master
Link       : http://git.haskell.org/haddock.git/commitdiff/0f6a628a149dd46960d701ae54fdfc057a168640

>---------------------------------------------------------------

commit 0f6a628a149dd46960d701ae54fdfc057a168640
Author: Simon Peyton Jones <simonpj at microsoft.com>
Date:   Mon Nov 25 17:25:14 2013 +0000

    Track changes in HsSpliceTy data constructor


>---------------------------------------------------------------

0f6a628a149dd46960d701ae54fdfc057a168640
 src/Haddock/Interface/Rename.hs |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Haddock/Interface/Rename.hs b/src/Haddock/Interface/Rename.hs
index a5ed47e..fd652cd 100644
--- a/src/Haddock/Interface/Rename.hs
+++ b/src/Haddock/Interface/Rename.hs
@@ -276,7 +276,7 @@ renameType t = case t of
   HsExplicitListTy  a b   -> HsExplicitListTy  a <$> mapM renameLType b
   HsExplicitTupleTy a b   -> HsExplicitTupleTy a <$> mapM renameLType b
   HsQuasiQuoteTy a        -> HsQuasiQuoteTy <$> renameHsQuasiQuote a
-  HsSpliceTy _ _ _        -> error "renameType: HsSpliceTy"
+  HsSpliceTy _ _          -> error "renameType: HsSpliceTy"
 
 renameHsQuasiQuote :: HsQuasiQuote Name -> RnM (HsQuasiQuote DocName)
 renameHsQuasiQuote (HsQuasiQuote a b c) = HsQuasiQuote <$> rename a <*> pure b <*> pure c



More information about the ghc-commits mailing list