Skip to content

Commit 450199e

Browse files
authored
docs: remove unnecessary and inconsistent quotation marks (#165)
1 parent d1a1da0 commit 450199e

File tree

1 file changed

+1
-1
lines changed
  • content/tutorial/01-svelte/08-stores/06-store-bindings

1 file changed

+1
-1
lines changed

content/tutorial/01-svelte/08-stores/06-store-bindings/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Changing the input value will now update `name` and all its dependents.
1515
We can also assign directly to store values inside a component. Add a `<button>` element:
1616

1717
```svelte
18-
<button on:click="{() => $name += '!'}">
18+
<button on:click={() => $name += '!'}>
1919
Add exclamation mark!
2020
</button>
2121
```

0 commit comments

Comments
 (0)