Skip to content

Commit 7142962

Browse files
committed
Fixes consistency issues between markdown and code in tutorial\02\01\05
1 parent c45e78b commit 7142962

File tree

2 files changed

+2
-2
lines changed
  • apps/svelte.dev/content/tutorial/02-advanced-svelte/01-advanced-reactivity/05-stores/+assets

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export let count = 0;
1+
export const count = 0;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import { writable } from 'svelte/store';
22

3-
export let count = writable(0);
3+
export const count = writable(0);

0 commit comments

Comments
 (0)