docs: fix spelling mistake in documentation

correct typo where "youself" was written instead of "yourself"

(cherry picked from commit 933ca9e5dc)
This commit is contained in:
Roshith 2026-01-12 23:17:17 +05:30 committed by Jessica Janiuk
parent 5f935eee58
commit dc9f59b9be

View file

@ -188,7 +188,7 @@ effect(() => {
## Advanced derivations
While `computed` handles simple readonly derivations, you might find youself needing a writable state that is dependant on other signals.
While `computed` handles simple readonly derivations, you might find yourself needing a writable state that is dependant on other signals.
For more information see the [Dependent state with linkedSignal](/guide/signals/linked-signal) guide.
All signal APIs are synchronous— `signal`, `computed`, `input`, etc. However, applications often need to deal with data that is available asynchronously. A `Resource` gives you a way to incorporate async data into your application's signal-based code and still allow you to access its data synchronously. For more information see the [Async reactivity with resources](/guide/signals/resource) guide.