From 0b45895b3e7d90ff473d27f7238e2bf3ff9ba4f5 Mon Sep 17 00:00:00 2001 From: Conduitry Date: Sun, 10 Mar 2019 09:17:48 -0400 Subject: [PATCH] Update site/src/routes/tutorial/[slug]/index.svelte Co-Authored-By: Rich-Harris --- site/src/routes/tutorial/[slug]/index.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/routes/tutorial/[slug]/index.svelte b/site/src/routes/tutorial/[slug]/index.svelte index dd0c129aa9..1b71b08b94 100644 --- a/site/src/routes/tutorial/[slug]/index.svelte +++ b/site/src/routes/tutorial/[slug]/index.svelte @@ -52,7 +52,7 @@ // TODO: this will need to be changed to the master branch, and probably should be dynamic instead of included // here statically - const tutorial_repo_link = 'https://github.com/sveltejs/svelte/tree/restructure-docs/site/content/tutorial'; + const tutorial_repo_link = 'https://github.com/sveltejs/svelte/tree/master/site/content/tutorial'; $: selected = lookup.get(slug); $: improve_link = `${tutorial_repo_link}/${selected.chapter.section_dir}/${selected.chapter.chapter_dir}`;