Skip to content

Commit

Permalink
Merge pull request #162 from DarshalShetty/fix-interp-Lvar-class
Browse files Browse the repository at this point in the history
Fix parens around "super"
  • Loading branch information
jsiek committed Aug 24, 2023
2 parents 5a7572a + c924d21 commit bd1e98a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2139,7 +2139,7 @@ \subsection{Extensible Interpreters via Method Overriding}
(define env^ (dict-set env x v))
((interp_exp env^) body)]
[else
(super (interp_exp env) e)]))
((super interp_exp env) e)]))
...
))
\end{lstlisting}
Expand Down

0 comments on commit bd1e98a

Please sign in to comment.