Skip to content

Commit 306b282

Browse files
author
Rich Harris
committed
add closing tag, for better syntax highlighting
1 parent 7f3fa47 commit 306b282

File tree

2 files changed

+2
-2
lines changed
  • content/tutorial/01-svelte/06-bindings/05-textarea-inputs

2 files changed

+2
-2
lines changed

content/tutorial/01-svelte/06-bindings/05-textarea-inputs/app-a/src/lib/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
{@html marked(value)}
77

8-
<textarea {value} />
8+
<textarea {value}></textarea>
99

1010
<style>
1111
textarea {

content/tutorial/01-svelte/06-bindings/05-textarea-inputs/app-b/src/lib/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
{@html marked(value)}
77

8-
<textarea bind:value />
8+
<textarea bind:value></textarea>
99

1010
<style>
1111
textarea {

0 commit comments

Comments
 (0)