Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion book.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1769,7 +1769,7 @@ \section{Example Compiler: A Partial Evaluator}
case Expr(value):
return Expr(pe_exp(value))

def pe_P_int(p):
def pe_Lint(p):
match p:
case Module(body):
new_body = [pe_stmt(s) for s in body]
Expand Down