diff --git a/site/content/tutorial/04-logic/06-await-blocks/text.md b/site/content/tutorial/04-logic/06-await-blocks/text.md index 0d47dcde95..1814681341 100644 --- a/site/content/tutorial/04-logic/06-await-blocks/text.md +++ b/site/content/tutorial/04-logic/06-await-blocks/text.md @@ -19,7 +19,7 @@ Most web applications have to deal with asynchronous data at some point. Svelte If you know that your promise can't reject, you can omit the `catch` block. You can also omit the first block if you don't want to show anything until the promise resolves: ```html -{#await promise then value} -

the value is {value}

+{#await promise then number} +

the number is {number}

{/await} -``` \ No newline at end of file +```