fix: Signature of ppExpr

This commit is contained in:
Leni Aniva 2024-07-15 12:22:47 -07:00
parent 193d94e798
commit 94c7b021f7
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ def isInaccessible (n: Name) : Bool := n.isInaccessibleUserName
@[export pantograph_mk_app_meta_m]
def mkAppM (constName : Name) (xs : Array Expr) : MetaM Expr := Meta.mkAppM constName xs
@[export pantograph_pp_expr]
def ppExpr (e: Expr) := Meta.ppExpr e
@[export pantograph_pp_expr_meta_m]
def ppExpr (e: Expr): MetaM String := toString<$> Meta.ppExpr e
-- Mirrors Lean's LocalDecl