From ef559a32101f8c88eb4284e2c2353a8a7c4df9dc Mon Sep 17 00:00:00 2001 From: Geoff Rich <4992896+geoffrich@users.noreply.github.com> Date: Thu, 27 Jan 2022 08:57:25 -0800 Subject: [PATCH] [docs] fix broken links --- site/content/docs/01-component-format.md | 2 +- site/content/docs/02-template-syntax.md | 2 +- site/content/docs/03-run-time.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/site/content/docs/01-component-format.md b/site/content/docs/01-component-format.md index d1751320c0..1c64094002 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-component-directives-bind-this). ```sv