diff --git a/apps/svelte.dev/content/tutorial/01-svelte/03-props/03-spread-props/index.md b/apps/svelte.dev/content/tutorial/01-svelte/03-props/03-spread-props/index.md index adfcaacb6..f10730424 100644 --- a/apps/svelte.dev/content/tutorial/01-svelte/03-props/03-spread-props/index.md +++ b/apps/svelte.dev/content/tutorial/01-svelte/03-props/03-spread-props/index.md @@ -2,7 +2,7 @@ title: Spread props --- -In this exercise, in `App.svelte` we've forgotten to pass the `name` prop expected by `PackageInfo.svelte`, meaning the `` element is empty and the npm link is broken. +In this exercise, in `App.svelte` we've forgotten to pass the `name` prop expected by `PackageInfo.svelte`, meaning the `` element is empty. We _could_ fix it by adding the prop...