Skip to content

Commit 43dfb39

Browse files
committed
update
1 parent c1c1d51 commit 43dfb39

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/routes/reference/secondary-primitives/create-render-effect.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,11 @@ This function re-runs whenever any of its dependencies change.
2727
As a result, refs are **not set** before the render effect runs for the first time.
2828

2929
- After the initial execution, render effects will re-run whenever any of their dependencies change.
30-
31-
The order in which render effects re-run is **not guaranteed**.
30+
This happens **after** any pure computations (such as [memos](/concepts/derived-values/memos)) within the same update cycle.
3231

3332
When multiple dependencies are updated within the same batch, the render effect will only run once.
3433

35-
- Render effects always run **after** any pure computations (such as [memos](/concepts/derived-values/memos)) within the same update cycle.
34+
The order in which render effects re-run is **not guaranteed**.
3635

3736
## Import
3837

0 commit comments

Comments
 (0)