From 35924b34c51f9780331bff4d9a94492651c79a74 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Mon, 22 Sep 2025 12:21:32 -0700 Subject: [PATCH] Fix: Correct private property access in docs --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index c1f2170..766cb34 100644 --- a/index.html +++ b/index.html @@ -337,9 +337,9 @@ A Block's return behavior is designed for fluency. It implicitly returns the val \`\`\`javascript calculator: { #total: 0 - add: (n) { #total = #total + n } // Implicitly returns '@' - sub: (n) { #total = #total - n } // Implicitly returns '@' - get: { ^ #total } // Explicitly returns the total + add: (n) { total = total + n } // Implicitly returns '@' + sub: (n) { total = total - n } // Implicitly returns '@' + get: { ^ total } // Explicitly returns the total } // .add() and .sub() return the calculator, allowing the chain