From b44a79dfd2e10dd3f1feaefd5747da1835705b81 Mon Sep 17 00:00:00 2001 From: Caichong <951412526@qq.com> Date: Sat, 6 Apr 2024 21:18:08 +0800 Subject: [PATCH] doc: typo in README.md (#143) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1661c08..e298aa0 100644 --- a/README.md +++ b/README.md @@ -384,7 +384,7 @@ Both computed and state Signals are garbage-collected like any JS values. But Wa `Signal.subtle.untrack` is an escape hatch allowing reading Signals *without* tracking those reads. This capability is unsafe because it allows the creation of computed Signals whose value depends on other Signals, but which aren't updated when those Signals change. It should be used when the untracked accesses will not change the result of the computation.