Merge pull request #1983 from c0bra/patch-1

Syntax error on element binding example
pull/1990/head
Rich Harris 6 years ago committed by GitHub
commit 971ed52d62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -36,7 +36,7 @@ Element bindings make it easy to respond to user interactions:
```html
<!-- { title: 'Element bindings' } -->
<h1>Hello {name}!</h1>
<input bind:value=name>
<input bind:value={name}>
```
```json
@ -158,4 +158,4 @@ export default function createRenderer(canvas, ctx) {
ctx.putImageData(imageData, 0, 0);
}
}
```
```

Loading…
Cancel
Save