From 9ed6195dde8ae802f8bc20de0b2a55eda7accba8 Mon Sep 17 00:00:00 2001 From: Cory Deppen Date: Sat, 8 Jul 2023 16:54:40 -0400 Subject: [PATCH 1/2] docs: fix link to invalidation section --- .../03-sveltekit/03-loading-data/02-layout-data/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/03-sveltekit/03-loading-data/02-layout-data/README.md b/content/tutorial/03-sveltekit/03-loading-data/02-layout-data/README.md index 60e262c68..cb8b450b4 100644 --- a/content/tutorial/03-sveltekit/03-loading-data/02-layout-data/README.md +++ b/content/tutorial/03-sveltekit/03-loading-data/02-layout-data/README.md @@ -47,4 +47,4 @@ Now, add a sidebar in the layout for the post page: The layout (and the page below it) inherits `data.summaries` from the parent `+layout.server.js`. -When we navigate from one post to another, we only need to load the data for the post itself — the layout data is still valid. See the documentation on [invalidation](https://kit.svelte.dev/docs/load#invalidation) to learn more. +When we navigate from one post to another, we only need to load the data for the post itself — the layout data is still valid. See the documentation on [invalidation](https://kit.svelte.dev/docs/load#rerunning-load-functions-manual-invalidation) to learn more. From ea43fa4e3785e1509ec9dc4559836f8ca46016f8 Mon Sep 17 00:00:00 2001 From: Geoff Rich <4992896+geoffrich@users.noreply.github.com> Date: Tue, 11 Jul 2023 09:30:04 -0700 Subject: [PATCH 2/2] Update content/tutorial/03-sveltekit/03-loading-data/02-layout-data/README.md --- .../03-sveltekit/03-loading-data/02-layout-data/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/03-sveltekit/03-loading-data/02-layout-data/README.md b/content/tutorial/03-sveltekit/03-loading-data/02-layout-data/README.md index cb8b450b4..3b25ecf82 100644 --- a/content/tutorial/03-sveltekit/03-loading-data/02-layout-data/README.md +++ b/content/tutorial/03-sveltekit/03-loading-data/02-layout-data/README.md @@ -47,4 +47,4 @@ Now, add a sidebar in the layout for the post page: The layout (and the page below it) inherits `data.summaries` from the parent `+layout.server.js`. -When we navigate from one post to another, we only need to load the data for the post itself — the layout data is still valid. See the documentation on [invalidation](https://kit.svelte.dev/docs/load#rerunning-load-functions-manual-invalidation) to learn more. +When we navigate from one post to another, we only need to load the data for the post itself — the layout data is still valid. See the documentation on [invalidation](https://kit.svelte.dev/docs/load#rerunning-load-functions) to learn more.