From 350a3aea630493ea269d1398377b8a4fcb723841 Mon Sep 17 00:00:00 2001 From: "svelte-docs-bot[bot]" <196124396+svelte-docs-bot[bot]@users.noreply.github.com> Date: Wed, 24 Sep 2025 15:34:43 +0000 Subject: [PATCH] sync svelte docs --- .../docs/svelte/03-template-syntax/19-await-expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/svelte.dev/content/docs/svelte/03-template-syntax/19-await-expressions.md b/apps/svelte.dev/content/docs/svelte/03-template-syntax/19-await-expressions.md index 9bbea4db53..30b1f01c1b 100644 --- a/apps/svelte.dev/content/docs/svelte/03-template-syntax/19-await-expressions.md +++ b/apps/svelte.dev/content/docs/svelte/03-template-syntax/19-await-expressions.md @@ -84,7 +84,7 @@ let b = $derived(await two()); To render placeholder UI, you can wrap content in a `` with a [`pending`](svelte-boundary#Properties-pending) snippet. This will be shown when the boundary is first created, but not for subsequent updates, which are globally coordinated. -After the contents of a boundary have resolved for the first time and replaced the `pending` snippet, you can detect subsequent async work with [`$effect.pending()`]($effect#$effect.pending). This is what you would use display a "we're asynchronously validating your input" spinner next to a form field, for example. +After the contents of a boundary have resolved for the first time and have replaced the `pending` snippet, you can detect subsequent async work with [`$effect.pending()`]($effect#$effect.pending). This is what you would use to display a "we're asynchronously validating your input" spinner next to a form field, for example. You can also use [`settled()`](svelte#settled) to get a promise that resolves when the current update is complete: