From cc735a7a110880d9237cec68935129ee0c258e56 Mon Sep 17 00:00:00 2001 From: Riyyi Date: Sat, 25 Mar 2023 17:49:54 +0100 Subject: [PATCH] Eval: Fix mal test The quote in the error message broke the step2 test. --- src/eval.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eval.cpp b/src/eval.cpp index 97e5430..ff7cd48 100644 --- a/src/eval.cpp +++ b/src/eval.cpp @@ -42,7 +42,7 @@ ASTNode* Eval::evalAst(ASTNode* ast, Environment* env) if (is(ast)) { auto result = env->lookup(static_cast(ast)->symbol()); if (!result) { - Error::the().addError(format("symbol’s function definition is void: {}", ast)); + Error::the().addError(format("symbol's function definition is void: {}", ast)); } return result; }