From 771b352ea3f17a43e96484cf744498d97a075cab Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Wed, 29 Sep 2021 14:54:35 -0700 Subject: [PATCH] [docs] what is rendered when for #await --- site/content/docs/02-template-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/02-template-syntax.md b/site/content/docs/02-template-syntax.md index d33e59af31..7971abeba5 100644 --- a/site/content/docs/02-template-syntax.md +++ b/site/content/docs/02-template-syntax.md @@ -309,7 +309,7 @@ An each block can also have an `{:else}` clause, which is rendered if the list i --- -Await blocks allow you to branch on the three possible states of a Promise — pending, fulfilled or rejected. +Await blocks allow you to branch on the three possible states of a Promise — pending, fulfilled or rejected. The pending state is rendered initially on both the client and server with the resolved state being updated after hydration. ```sv {#await promise}