From 025e5c333ba5806dd6345a433a468291ed9861f4 Mon Sep 17 00:00:00 2001 From: Abhishiv Saxena Date: Tue, 2 Jul 2024 21:40:42 +0530 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a50e999..d817cda 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ const Page = component("HomePage", (props, { signal, wire, store }) => { // 3) Most importantly: wire reactivity to signals // with explicit subscription using the $ token param - // Easy to reason about and no untrack/sample related errors + // NB: also makes code easy to reason about and prevents those pesky untrack/sample related errors const $doubleCount = wire(($) => $count($) * 2); return (