diff --git a/apps/svelte.dev/content/tutorial/01-svelte/05-events/04-component-events/index.md b/apps/svelte.dev/content/tutorial/01-svelte/05-events/04-component-events/index.md
index 820517cdb3..b6161e3adb 100644
--- a/apps/svelte.dev/content/tutorial/01-svelte/05-events/04-component-events/index.md
+++ b/apps/svelte.dev/content/tutorial/01-svelte/05-events/04-component-events/index.md
@@ -7,7 +7,7 @@ You can pass event handlers to components like any other prop. In `Stepper.svelt
```svelte
/// file: Stepper.svelte
```
@@ -22,6 +22,7 @@ You can pass event handlers to components like any other prop. In `Stepper.svelt
In `App.svelte`, define the handlers:
```svelte
+/// file: App.svelte
value += 1}+++
+++decrement={() => value -= 1}+++