Skip to content

Commit 4b91104

Browse files
authored
docs: fix else if blocks on tutorial (#9336)
1 parent 5905030 commit 4b91104

File tree

1 file changed

+1
-3
lines changed
  • documentation/tutorial/04-logic/03-else-if-blocks/app-a

1 file changed

+1
-3
lines changed

documentation/tutorial/04-logic/03-else-if-blocks/app-a/App.svelte

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
{#if x > 10}
66
<p>{x} is greater than 10</p>
7-
{:else if 5 > x}
8-
<p>{x} is less than 5</p>
97
{:else}
10-
<p>{x} is between 5 and 10</p>
8+
<p>{x} is between 0 and 10</p>
119
{/if}

0 commit comments

Comments
 (0)