diff --git a/site/content/tutorial/02-reactivity/01-reactive-assignments/app-b/App.svelte b/site/content/tutorial/02-reactivity/01-reactive-assignments/app-b/App.svelte
index bc50d74cfc..dff5942d6e 100644
--- a/site/content/tutorial/02-reactivity/01-reactive-assignments/app-b/App.svelte
+++ b/site/content/tutorial/02-reactivity/01-reactive-assignments/app-b/App.svelte
@@ -1,11 +1,11 @@
-
diff --git a/site/content/tutorial/02-reactivity/01-reactive-assignments/text.md b/site/content/tutorial/02-reactivity/01-reactive-assignments/text.md
index b0909f1feb..15b58f0820 100644
--- a/site/content/tutorial/02-reactivity/01-reactive-assignments/text.md
+++ b/site/content/tutorial/02-reactivity/01-reactive-assignments/text.md
@@ -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
-
+
```
-Inside the `handleClick` function, all we need to do is change the value of `count`:
+Inside the `incrementCount` 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.
\ No newline at end of file
+Svelte 'instruments' this assignment with some code that tells it the DOM will need to be updated.