diff --git a/site/content/tutorial/08-stores/01-writable-stores/app-a/App.svelte b/site/content/tutorial/08-stores/01-writable-stores/app-a/App.svelte
index ee542f789d..e1451d7ed2 100644
--- a/site/content/tutorial/08-stores/01-writable-stores/app-a/App.svelte
+++ b/site/content/tutorial/08-stores/01-writable-stores/app-a/App.svelte
@@ -6,7 +6,7 @@
let count_value;
- const unsubscribe = count.subscribe(value => {
+ const subscribe = count.subscribe(value => {
count_value = value;
});
@@ -15,4 +15,4 @@
-
\ No newline at end of file
+