Merge pull request #1983 from c0bra/patch-1

Syntax error on element binding example
pull/7738/head
Rich Harris 7 years ago committed by GitHub
commit f20df5042f

@ -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