From 390689bcf2b4440570cf3f153af6777c54af6e2c Mon Sep 17 00:00:00 2001 From: tomoam <29677552+tomoam@users.noreply.github.com> Date: Mon, 28 Feb 2022 13:20:25 +0900 Subject: [PATCH] Update ambient.d.ts (#4130) --- packages/kit/types/ambient.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/kit/types/ambient.d.ts b/packages/kit/types/ambient.d.ts index 885c960f313b..ff8f0fd7f464 100644 --- a/packages/kit/types/ambient.d.ts +++ b/packages/kit/types/ambient.d.ts @@ -125,7 +125,7 @@ declare module '$app/navigation' { * If no argument is given, all routes will be fetched, otherwise you can specify routes by any matching pathname * such as `/about` (to match `src/routes/about.svelte`) or `/blog/*` (to match `src/routes/blog/[slug].svelte`). * - * Unlike prefetch, this won't call preload for individual pages. + * Unlike prefetch, this won't call load for individual pages. * Returns a Promise that resolves when the routes have been prefetched. */ export function prefetchRoutes(routes?: string[]): Promise;