summaryrefslogtreecommitdiff
path: root/src/GF/Compile/PGFPretty.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/GF/Compile/PGFPretty.hs')
-rw-r--r--src/GF/Compile/PGFPretty.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GF/Compile/PGFPretty.hs b/src/GF/Compile/PGFPretty.hs
index b6d8f514b..178f8866b 100644
--- a/src/GF/Compile/PGFPretty.hs
+++ b/src/GF/Compile/PGFPretty.hs
@@ -31,7 +31,7 @@ prCat :: CId -> [Hypo] -> Doc
prCat c h | isLiteralCat c = empty
| otherwise = text "cat" <+> text (prCId c)
-prFun :: CId -> (Type,Expr) -> Doc
+prFun :: CId -> (Type,[Equation]) -> Doc
prFun f (t,_) = text "fun" <+> text (prCId f) <+> text ":" <+> prType t
prType :: Type -> Doc