diff --git a/documentation/tutorial/04-logic/03-else-if-blocks/app-a/App.svelte b/documentation/tutorial/04-logic/03-else-if-blocks/app-a/App.svelte index 2b740dbf9b..fb41a894f9 100644 --- a/documentation/tutorial/04-logic/03-else-if-blocks/app-a/App.svelte +++ b/documentation/tutorial/04-logic/03-else-if-blocks/app-a/App.svelte @@ -4,8 +4,6 @@ {#if x > 10}
{x} is greater than 10
-{:else if 5 > x} -{x} is less than 5
{:else} -{x} is between 5 and 10
+{x} is between 0 and 10
{/if}