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"?