Accurately name function

pull/4060/head
The Jared Wilcurt 6 years ago committed by GitHub
parent 6a4956b403
commit ac62feb986
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,15 +7,15 @@ At the heart of Svelte is a powerful system of *reactivity* for keeping the DOM
To demonstrate it, we first need to wire up an event handler. Replace line 9 with this:
```html
<button on:click={handleClick}>
<button on:click={incrementCount}>
```
Inside the `handleClick` function, all we need to do is change the value of `count`:
```js
function handleClick() {
function incrementCount() {
count += 1;
}
```
Svelte 'instruments' this assignment with some code that tells it the DOM will need to be updated.
Svelte 'instruments' this assignment with some code that tells it the DOM will need to be updated.

Loading…
Cancel
Save