From 297b61e79d8c093367810a74d3b98ca0c6b7a32c Mon Sep 17 00:00:00 2001 From: rdaly3 <35935730+rdaly3@users.noreply.github.com> Date: Thu, 22 Aug 2024 06:40:58 -0700 Subject: [PATCH] Update intro-to-reactivity.mdx (#851) --- src/routes/concepts/intro-to-reactivity.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/concepts/intro-to-reactivity.mdx b/src/routes/concepts/intro-to-reactivity.mdx index 58d70f8e1..fa3e35fc2 100644 --- a/src/routes/concepts/intro-to-reactivity.mdx +++ b/src/routes/concepts/intro-to-reactivity.mdx @@ -167,7 +167,7 @@ function Counter() { ``` Components, much like other functions, will only run _once_. -This means that if a signal is accessed outside of the return statement, will run on initialization, but any updates to the signal will not trigger an update. +This means that if a signal is accessed outside of the return statement, it will run on initialization, but any updates to the signal will not trigger an update. ```jsx function Counter() {