From e50cddef752688632f2b4a892a0c5eba60e68704 Mon Sep 17 00:00:00 2001 From: srenderfrance <124455892+srenderfrance@users.noreply.github.com> Date: Tue, 4 Jun 2024 14:08:48 +0200 Subject: [PATCH] Update else-blocks README.md This change is paired with a separate pull request, and should only be used if the corresponding changes to the else-blocks'

in the in app.svelte are implemented. --- content/tutorial/01-svelte/04-logic/02-else-blocks/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/01-svelte/04-logic/02-else-blocks/README.md b/content/tutorial/01-svelte/04-logic/02-else-blocks/README.md index f342c1188..730b19973 100644 --- a/content/tutorial/01-svelte/04-logic/02-else-blocks/README.md +++ b/content/tutorial/01-svelte/04-logic/02-else-blocks/README.md @@ -9,7 +9,7 @@ Just like in JavaScript, an `if` block can have an `else` block: {#if count > 10}

{count} is greater than 10

+++{:else} -

{count} is between 0 and 10

+++ +

{count} is less than 11

+++ {/if} ```