From 8fdaca14c47e8d5fe0ccf28582393fbade4d7508 Mon Sep 17 00:00:00 2001 From: chaurka <92913245+chaurka@users.noreply.github.com> Date: Fri, 14 Jan 2022 17:42:00 +0200 Subject: [PATCH] [docs] fix link to `bind:this` syntax Simply replace `/docs#template-syntax-element-directives-bind-this-element` with `/docs#template-syntax-element-directives-bind-this`. --- site/content/docs/01-component-format.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/01-component-format.md b/site/content/docs/01-component-format.md index d1751320c0..0cfaca257f 100644 --- a/site/content/docs/01-component-format.md +++ b/site/content/docs/01-component-format.md @@ -57,7 +57,7 @@ In development mode (see the [compiler options](/docs#compile-time-svelte-compil If you export a `const`, `class` or `function`, it is readonly from outside the component. Function *expressions* are valid props, however. -Readonly props can be accessed as properties on the element, tied to the component using [`bind:this` syntax](/docs#template-syntax-element-directives-bind-element). +Readonly props can be accessed as properties on the element, tied to the component using [`bind:this` syntax](/docs#template-syntax-element-directives-bind). ```sv