From 4d3bd638c97450b7acb59b2f8bb89eb0bb553901 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Tue, 15 Jul 2025 14:46:17 -0400 Subject: [PATCH] missing link --- documentation/docs/03-template-syntax/19-await-expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/03-template-syntax/19-await-expressions.md b/documentation/docs/03-template-syntax/19-await-expressions.md index 20a9e78821..77ef3508dc 100644 --- a/documentation/docs/03-template-syntax/19-await-expressions.md +++ b/documentation/docs/03-template-syntax/19-await-expressions.md @@ -101,7 +101,7 @@ let b = $derived(await two()); In addition to the nearest boundary's [`pending`](svelte-boundary#Properties-pending) snippet, you can indicate that asynchronous work is ongoing with [`$effect.pending()`]($effect#$effect.pending). -You can also use [`settled()`] to get a promise that resolves when the current update is complete: +You can also use [`settled()`](svelte#settled) to get a promise that resolves when the current update is complete: ```js let color = 'red';