From ba4daef6852b077d8cebd324675f643900656ae3 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 25 Mar 2025 17:11:54 -0400 Subject: [PATCH] Minor fixes --- lesson-templates/lesson-12-allocating.tm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lesson-templates/lesson-12-allocating.tm b/lesson-templates/lesson-12-allocating.tm index 2f02bca..8bc1a24 100644 --- a/lesson-templates/lesson-12-allocating.tm +++ b/lesson-templates/lesson-12-allocating.tm @@ -36,7 +36,7 @@ func main(): # Without `@`, attempting to mutate will cause an error: frozen := {"key"="value"} - frozen["key"] = "new value" # This should fail + frozen["key"] = "new value" # <- This will break, comment it out >> frozen["key"] - = "new value" + = "value"?