Skip to content

Commit 969a8dc

Browse files
committed
update signal sentence
1 parent 381c2e6 commit 969a8dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/routes/reference/basic-reactivity/create-signal.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ description: >-
1616
---
1717

1818
Creates a reactive state primitive consisting of a getter (accessor) and a setter function that forms the foundation of Solid's reactivity system.
19-
Signals are optimized for frequent reads and infrequent writes
19+
Signals use a pull-based reactivity model where tracking subscriptions (reads) is lightweight, while updates (writes) trigger dependency tracking and effect re-execution, making them optimized for frequent reads and infrequent writes.
2020

2121
## Import
2222

0 commit comments

Comments
 (0)