From b095485da22070e69e718dde0dbc97dc4fe192e8 Mon Sep 17 00:00:00 2001 From: ddocky <52802308+ddocky@users.noreply.github.com> Date: Wed, 21 Aug 2024 21:56:35 -0700 Subject: [PATCH] Update chapter10_functions.md corrected class name in 10.2 solution --- note/answers/chapter10_functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/note/answers/chapter10_functions.md b/note/answers/chapter10_functions.md index e74901040..c3c077ad0 100644 --- a/note/answers/chapter10_functions.md +++ b/note/answers/chapter10_functions.md @@ -40,7 +40,7 @@ separately, since lambdas won't have one: ```java - class LoxFunction implements Callable { + class LoxFunction implements LoxCallable { private final String name; private final Expr.Function declaration; private final Environment closure;