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} ```