diff --git a/src/routes/concepts/effects.mdx b/src/routes/concepts/effects.mdx index 023e7e1e4..dfcb06d28 100644 --- a/src/routes/concepts/effects.mdx +++ b/src/routes/concepts/effects.mdx @@ -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, variables, 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.