From b886a23b2e46e8444332242234e7c557016a3dac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 12:18:02 -0400 Subject: [PATCH] Sync `svelte` docs (#755) sync svelte docs Co-authored-by: Rich-Harris <1162160+Rich-Harris@users.noreply.github.com> --- .../content/docs/svelte/03-template-syntax/11-bind.md | 2 +- .../content/docs/svelte/03-template-syntax/13-transition.md | 3 +-- .../docs/svelte/99-legacy/02-legacy-reactive-assignments.md | 2 +- .../content/docs/svelte/99-legacy/40-legacy-component-api.md | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/apps/svelte.dev/content/docs/svelte/03-template-syntax/11-bind.md b/apps/svelte.dev/content/docs/svelte/03-template-syntax/11-bind.md index 86a725f2f..4fe3e7c4a 100644 --- a/apps/svelte.dev/content/docs/svelte/03-template-syntax/11-bind.md +++ b/apps/svelte.dev/content/docs/svelte/03-template-syntax/11-bind.md @@ -230,7 +230,7 @@ All visible elements have the following readonly bindings, measured with a `Resi bind:this={dom_node} ``` -To get a reference to a DOM node, use `bind:this`. The value will be `undefined` until the component is mounted — in other words, you should read it inside an effect or an event handler, but not during component initialisation: +To get a reference to a DOM node, use `bind:this`. The value will be `undefined` until the component is mounted — in other words, you should read it inside an effect or an event handler, but not during component initialisation: ```svelte