Fix textarea tutorial example code

The textarea tutorial example code was missing a `>` at the end.
pull/2179/head
fiskgrodan 7 years ago committed by GitHub
parent 3e7eafe9de
commit 449f734853
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,5 +5,5 @@ title: Textarea inputs
The `<textarea>` element behaves similarly to a text input in Svelte — use `bind:value`:
```html
<textarea bind:value={markdown}></textarea
```
<textarea bind:value={markdown}></textarea>
```

Loading…
Cancel
Save