From cadedbccd5e5763ab0de36d9e86bbf93b1d791e9 Mon Sep 17 00:00:00 2001 From: Min Kim <57550290+minkyngkm@users.noreply.github.com> Date: Thu, 19 Oct 2023 14:46:51 +0100 Subject: [PATCH] docs: fix else if blocks on tutorial (#9336) --- .../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 2b740dbf9b57..fb41a894f9d2 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}