From d4fa530f02c471887efb0dfc23c3ead0e7dbf43b Mon Sep 17 00:00:00 2001 From: minkyngkm Date: Thu, 19 Oct 2023 13:11:19 +0100 Subject: [PATCH] Fix else if blocks on tutorial --- .../tutorial/04-logic/03-else-if-blocks/app-a/App.svelte | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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}