From 53dbe9f8127b525126c12420075945f1ccb049f7 Mon Sep 17 00:00:00 2001 From: Garret Castro <53013571+TheVanadium@users.noreply.github.com> Date: Mon, 18 Aug 2025 18:27:48 -0700 Subject: [PATCH] doc: typo --- documentation/docs/06-runtime/01-stores.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/06-runtime/01-stores.md b/documentation/docs/06-runtime/01-stores.md index 12d5576b40..4926e8668c 100644 --- a/documentation/docs/06-runtime/01-stores.md +++ b/documentation/docs/06-runtime/01-stores.md @@ -6,7 +6,7 @@ title: Stores - how to write - TODO should the details for the store methods belong to the reference section? --> -A _store_ is an object that allows reactive access to a value via a simple _store contract_. The [`svelte/store` module](../svelte-store) contains minimal store implementations which fulfil this contract. +A _store_ is an object that allows reactive access to a value via a simple _store contract_. The [`svelte/store` module](../svelte-store) contains minimal store implementations which fulfill this contract. Any time you have a reference to a store, you can access its value inside a component by prefixing it with the `$` character. This causes Svelte to declare the prefixed variable, subscribe to the store at component initialisation and unsubscribe when appropriate.