From e1d4ae856173450bd5a113acb6d3e5825aa5a64d Mon Sep 17 00:00:00 2001 From: Ignatius Bagus Date: Tue, 21 Dec 2021 22:52:49 +0700 Subject: [PATCH] docs links that points outside --- site/content/docs/00-introduction.md | 6 +++--- site/content/docs/01-component-format.md | 2 +- site/content/docs/02-template-syntax.md | 4 ++-- site/content/docs/03-run-time.md | 12 ++++++------ 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/site/content/docs/00-introduction.md b/site/content/docs/00-introduction.md index 2ca82a8698..2fece5534f 100644 --- a/site/content/docs/00-introduction.md +++ b/site/content/docs/00-introduction.md @@ -4,8 +4,8 @@ title: Before we begin This page contains detailed API reference documentation. It's intended to be a resource for people who already have some familiarity with Svelte. -If that's not you (yet), you may prefer to visit the [interactive tutorial](tutorial) or the [examples](examples) before consulting this reference. +If that's not you (yet), you may prefer to visit the [interactive tutorial](/tutorial) or the [examples](/examples) before consulting this reference. -Don't be shy about asking for help in the [Discord chatroom](chat). +Don't be shy about asking for help in the [Discord chatroom](/chat). -Using an older version of Svelte? Have a look at the [v2 docs](https://v2.svelte.dev). \ No newline at end of file +Using an older version of Svelte? Have a look at the [v2 docs](https://v2.svelte.dev). diff --git a/site/content/docs/01-component-format.md b/site/content/docs/01-component-format.md index cc2673d941..8614b79255 100644 --- a/site/content/docs/01-component-format.md +++ b/site/content/docs/01-component-format.md @@ -109,7 +109,7 @@ Update expressions (`count += 1`) and property assignments (`obj.x = y`) have th --- -Because Svelte's reactivity is based on assignments, using array methods like `.push()` and `.splice()` won't automatically trigger updates. A subsequent assignment is required to trigger the update. This and more details can also be found in the [tutorial](tutorial/updating-arrays-and-objects). +Because Svelte's reactivity is based on assignments, using array methods like `.push()` and `.splice()` won't automatically trigger updates. A subsequent assignment is required to trigger the update. This and more details can also be found in the [tutorial](/tutorial/updating-arrays-and-objects). ```sv