From 15b909b6e11af155ec1315214af3e16c1875def5 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Wed, 29 Sep 2021 15:56:01 -0700 Subject: [PATCH] update --- 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 7971abeba5..e0145445a1 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. The pending state is rendered initially on both the client and server with the resolved state being updated after hydration. +Await blocks allow you to branch on the three possible states of a Promise — pending, fulfilled or rejected. If using SSR, the server will render the pending state. ```sv {#await promise}