Skip to content

Commit 2581e1b

Browse files
Mind-of-ApolloLadyBluenotes
authored andcommitted
Remove "variables" from createEffect dependency examples (#1269)
1 parent 42bee6a commit 2581e1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

old pages/concepts/effects.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ When the value of `count` changes, the effect is triggered, causing it to run ag
2828

2929
Effects can be set to observe any number of dependencies.
3030
Dependencies are what allow an effect to track changes and respond accordingly.
31-
These can include signals, variables, props, context, or any other reactive values.
31+
These can include signals, props, context, or any other reactive values.
3232
When any of these change, the effect is notified and will run again to update its state.
3333

3434
Upon initialization, an effect will run _once_, regardless of whether it has any dependencies.

0 commit comments

Comments
 (0)