Skip to content

Commit 2d32524

Browse files
committed
Fix links
1 parent 2ab382d commit 2d32524

File tree

1 file changed

+2
-2
lines changed
  • src/routes/reference/reactive-utilities

1 file changed

+2
-2
lines changed

src/routes/reference/reactive-utilities/batch.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ DOM updates, which can be expensive.
6262
Solid uses `batch` internally to automatically batch updates for you
6363
in a few cases:
6464

65-
* Within [effects](/reference/basic-reactivity/effects)
65+
* Within [`createEffect`](/reference/basic-reactivity/create-effect)
6666
and [`onMount`](/reference/lifecycle/on-mount)
6767
* Within the [setter of a store](/reference/store-utilities/create-store#setter)
6868
(which can update several properties at once)
6969
* Within array methods (e.g. `Array.prototype.splice`) of a
70-
[mutable store](/reference/store-utilities/create-mutable-store)
70+
[mutable store](/reference/store-utilities/create-mutable)
7171
(which can update several elements at once)
7272

7373
These save you from having to use `batch` yourself in many cases.

0 commit comments

Comments
 (0)