From ca2ec0d4d5e0d74320d5c13d79c5e5c0fa8a9fb1 Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Tue, 13 Apr 2021 14:37:33 +0800 Subject: [PATCH] Fix script typo. --- scripts/function_decl2.rhai | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/function_decl2.rhai b/scripts/function_decl2.rhai index ae14c454..99507209 100644 --- a/scripts/function_decl2.rhai +++ b/scripts/function_decl2.rhai @@ -9,6 +9,6 @@ fn addme(a, b) { let result = addme(a, 4); -print(!addme(a, 4) should be 46: ${result}``); +print(`addme(a, 4) should be 46: ${result}`); print(`a should still be 3: ${a}`); // should print 3 - 'a' is never changed