From 64435d1553075c7c9c548ec1a4de30d30c5fae9d Mon Sep 17 00:00:00 2001 From: gunggmee <66834751+gunggmee@users.noreply.github.com> Date: Thu, 21 Oct 2021 18:51:08 +0900 Subject: [PATCH] [docs] remove confusing assignment from stores tutorial (#6867) Tutorial on writable stores contains unexplained and unused assignment which might cause confusion. Proper explanations on `unsubscribe` is in the next step of the tutorial. --- .../tutorial/08-stores/01-writable-stores/app-b/App.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/tutorial/08-stores/01-writable-stores/app-b/App.svelte b/site/content/tutorial/08-stores/01-writable-stores/app-b/App.svelte index ee542f789d..c77563e354 100644 --- a/site/content/tutorial/08-stores/01-writable-stores/app-b/App.svelte +++ b/site/content/tutorial/08-stores/01-writable-stores/app-b/App.svelte @@ -6,7 +6,7 @@ let count_value; - const unsubscribe = count.subscribe(value => { + count.subscribe(value => { count_value = value; });