From d043b3c1a4f70ebe14348a894b1bda9992b03481 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Fri, 24 Oct 2025 12:08:19 -0400 Subject: [PATCH] tweak docs --- .../docs/03-template-syntax/19-await-expressions.md | 6 +++++- 1 file changed, 5 insertions(+), 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 e10a9ac0c4..ae882ddd6f 100644 --- a/documentation/docs/03-template-syntax/19-await-expressions.md +++ b/documentation/docs/03-template-syntax/19-await-expressions.md @@ -137,7 +137,7 @@ If a `` with a `pending` snippet is encountered during SSR, tha ## Forking -The [`fork(...)`](svelte#fork) API, added in 5.42, makes it possible to run `await` expressions that you _expect_ to happen in the near future. This is mainly intended for frameworks like SvelteKit to implement preloading when users signal an intent to navigate (for example). +The [`fork(...)`](svelte#fork) API, added in 5.42, makes it possible to run `await` expressions that you _expect_ to happen in the near future. This is mainly intended for frameworks like SvelteKit to implement preloading when (for example) users signal an intent to navigate. ```svelte