From 547fbc6ebd3fd02b32ab8c9eec4a7d6b2c4ec17e Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Thu, 30 Sep 2021 23:23:04 -0700 Subject: [PATCH] [docs] what is rendered when for #await (#6788) --- 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..1053748e1b 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. In SSR mode, only the pending state will be rendered on the server. ```sv {#await promise}