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