From e8e5b122c71c5421955d0fa9c54265e56b2fe8e1 Mon Sep 17 00:00:00 2001 From: tomoam <29677552+tomoam@users.noreply.github.com> Date: Tue, 4 Apr 2023 19:12:01 +0900 Subject: [PATCH] fix: remove link for removed page --- .../01-svelte/08-stores/02-auto-subscriptions/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/01-svelte/08-stores/02-auto-subscriptions/README.md b/content/tutorial/01-svelte/08-stores/02-auto-subscriptions/README.md index 6f4967fab..2ac0aa131 100644 --- a/content/tutorial/01-svelte/08-stores/02-auto-subscriptions/README.md +++ b/content/tutorial/01-svelte/08-stores/02-auto-subscriptions/README.md @@ -15,7 +15,7 @@ Start by declaring `unsubscribe` in `App.svelte`: > Calling a `subscribe` method returns an `unsubscribe` function. -You now declared `unsubscribe`, but it still needs to be called, for example through the `onDestroy` [lifecycle hook](/tutorial/ondestroy): +You now declared `unsubscribe`, but it still needs to be called, for example through the `onDestroy` lifecycle hook: ```svelte /// file: App.svelte