diff --git a/sites/svelte-5-preview/src/routes/docs/content/01-api/02-runes.md b/sites/svelte-5-preview/src/routes/docs/content/01-api/02-runes.md index 0bcccda50e..170f56ca84 100644 --- a/sites/svelte-5-preview/src/routes/docs/content/01-api/02-runes.md +++ b/sites/svelte-5-preview/src/routes/docs/content/01-api/02-runes.md @@ -312,51 +312,6 @@ This also applies to more complex calculations that require more than a simple e ``` -When reacting to a state change and writing to a different state as a result, think about if it's possible to use callback props instead. - -```svelte - - - - - - - - - -``` - -If you want to have something update from above but also modify it from below (i.e. you want some kind of "writable `$derived`"), and events aren't an option, you can also use an object with getters and setters. - -```svelte - - - -``` - If you absolutely have to update `$state` within an effect and run into an infinite loop because you read and write to the same `$state`, use [untrack](functions#untrack). ### What this replaces