diff --git a/site/src/pages/index.html b/site/src/pages/index.html
index b3e8965..61cf99c 100644
--- a/site/src/pages/index.html
+++ b/site/src/pages/index.html
@@ -29,7 +29,7 @@
By extending our base class, you get an easy authoring experience as you would expect in writing your components:
- - A signals-like props API that synchronizes your components' property values and UI
+ - A props API that synchronizes your components' property values and HTML attributes
- Sensible life-cycle hooks that you understand and remember
- Extensible templates & renderer (examples in-progress)
- Provided out-of-the-box with McFly, a powerful no-framework framework
diff --git a/type-restore/Counter.mjs b/type-restore/Counter.mjs
index 5041d47..c45d41d 100644
--- a/type-restore/Counter.mjs
+++ b/type-restore/Counter.mjs
@@ -5,10 +5,11 @@ export class Counter extends WebComponent {
static properties = ["count"];
onInit() {
this.props.count = 1;
+ let i = 1
this.onclick = ()=> ++this.props.count
- let double = () => this.props.count * 2;
+ let double = () => i * 2;
console.log(double());
- this.props.count = 3;
+ i = 3;
console.log(double());
}
get template() {