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
4 changes: 2 additions & 2 deletions src/routes/concepts/intro-to-reactivity.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ setCount(1);
// `count` is not being tracked, so the console log will not update when `count` changes.
```

Since initialization is a **one-time event**, if a signal is accessed _outside of a tracking scope_, it will not be tracked.
Initialization, or creation is a **one-time event** that doesn't cause tracking.
To track a signal, it must be accessed within the scope of a subscriber.
Reactive primitives, such as [effects](/concepts/effects), can be used to create subscribers.
Reactive primitives, such as [memos](/concepts/derived-values/memos) can be used to create derived values from signals or other memos, and [effects](/concepts/effects) to create subscribers that use the reactive graph output once it's settled.

```jsx
const [count, setCount] = createSignal(0);
Expand Down