From 98ece151b326e39ea22198c416510ee6161284f3 Mon Sep 17 00:00:00 2001 From: Caleb Chiesa Date: Mon, 28 Jun 2021 06:18:47 -0700 Subject: [PATCH] Fix typo in stores tutorial (#6461) --- site/content/tutorial/08-stores/02-auto-subscriptions/text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/tutorial/08-stores/02-auto-subscriptions/text.md b/site/content/tutorial/08-stores/02-auto-subscriptions/text.md index f80c4b2f72..33c2358b39 100644 --- a/site/content/tutorial/08-stores/02-auto-subscriptions/text.md +++ b/site/content/tutorial/08-stores/02-auto-subscriptions/text.md @@ -12,7 +12,7 @@ const unsubscribe = count.subscribe(value => { }); ``` -You now declared `unsubscribe`, but it still needs be to 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](tutorial/ondestroy): ```html