From 29e6e707b302595ad9e9fb87cdd6733998f19b3f Mon Sep 17 00:00:00 2001 From: Lubomir <38118105+0x9c40@users.noreply.github.com> Date: Sun, 4 Jan 2026 13:37:47 -0300 Subject: [PATCH] Update computeds.md (#4605) --- docs/computeds.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/computeds.md b/docs/computeds.md index 8dcbb7b94..9e4f78a93 100644 --- a/docs/computeds.md +++ b/docs/computeds.md @@ -82,7 +82,7 @@ Even though we change the `amount`, and this will trigger the `total` to recompu it won't trigger the `autorun`, as `total` will detect its output hasn't been affected, so there is no need to update the `autorun`. In comparison, if `total` would not be annotated, the `autorun` would run its effect 3 times, -as it would directly depend on `total` and `amount`. [Try it out yourself](https://codesandbox.io/s/computed-3cjo9?file=/src/index.tsx). +as it would directly depend on `price` and `amount`. [Try it out yourself](https://codesandbox.io/s/computed-3cjo9?file=/src/index.tsx). ![computed graph](assets/computed-example.png)