tweaks to docs

This commit is contained in:
Leo Horie 2016-12-07 10:09:49 -05:00
parent f1f52445ec
commit ae916664de
3 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ Returns an event handler that runs `callback` with the value of the specified DO
```javascript
var state = {
value: "",
setValue: function(v) {value = v}
setValue: function(v) {state.value = v}
}
var Component = {