Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/routes/concepts/effects.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ When the value of `count` changes, the effect is triggered, causing it to run ag

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

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