From 71df043976b28c111d6a3a6b3148e9f8f4380d8a Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Mon, 15 Sep 2025 01:10:32 -0700 Subject: [PATCH] Update index.html --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 89725da..3876e3a 100644 --- a/index.html +++ b/index.html @@ -135,11 +135,11 @@ counter: { #value: 0 inc: { - #value = #value + 1 // Mutates parent's private state + value = value + 1 // Mutates parent's private state }, get: { - #value // The last expression is returned + value // The last expression is returned } }