From 8df84cc5d88fbf96e21eff315e6330b850710d20 Mon Sep 17 00:00:00 2001 From: Geoff Rich <4992896+geoffrich@users.noreply.github.com> Date: Tue, 1 Feb 2022 13:43:28 -0800 Subject: [PATCH] [docs] fix broken links (#7194) --- 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