Skip to content

Commit e6c8e45

Browse files
Sync kit docs (#802)
sync kit docs Co-authored-by: Rich-Harris <[email protected]>
1 parent bb848fd commit e6c8e45

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/svelte.dev/content/docs/kit/98-reference/[email protected]

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -976,7 +976,7 @@ type Handle = (input: {
976976

977977
## HandleClientError
978978

979-
The client-side [`handleError`](https://svelte.dev/docs/kit/hooks#shared-hooks-handleError) hook runs when an unexpected error is thrown while navigating.
979+
The client-side [`handleError`](https://svelte.dev/docs/kit/hooks#Shared-hooks-handleError) hook runs when an unexpected error is thrown while navigating.
980980

981981
If an unexpected error is thrown during loading or the following render, this function will be called with the error and the event.
982982
Make sure that this function _never_ throws an error.
@@ -996,7 +996,7 @@ type HandleClientError = (input: {
996996

997997
## HandleFetch
998998

999-
The [`handleFetch`](https://svelte.dev/docs/kit/hooks#server-hooks-handleFetch) hook allows you to modify (or replace) a `fetch` request that happens inside a `load` function that runs on the server (or during pre-rendering)
999+
The [`handleFetch`](https://svelte.dev/docs/kit/hooks#Server-hooks-handleFetch) hook allows you to modify (or replace) a `fetch` request that happens inside a `load` function that runs on the server (or during pre-rendering)
10001000

10011001
<div class="ts-block">
10021002

@@ -1012,7 +1012,7 @@ type HandleFetch = (input: {
10121012

10131013
## HandleServerError
10141014

1015-
The server-side [`handleError`](https://svelte.dev/docs/kit/hooks#shared-hooks-handleError) hook runs when an unexpected error is thrown while responding to a request.
1015+
The server-side [`handleError`](https://svelte.dev/docs/kit/hooks#Shared-hooks-handleError) hook runs when an unexpected error is thrown while responding to a request.
10161016

10171017
If an unexpected error is thrown during loading or rendering, this function will be called with the error and the event.
10181018
Make sure that this function _never_ throws an error.

apps/svelte.dev/content/docs/kit/98-reference/54-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ interface PageState {}
213213

214214
## Platform
215215

216-
If your adapter provides [platform-specific context](https://svelte.dev/docs/kit/adapters#platform-specific-context) via `event.platform`, you can specify it here.
216+
If your adapter provides [platform-specific context](https://svelte.dev/docs/kit/adapters#Platform-specific-context) via `event.platform`, you can specify it here.
217217

218218
<div class="ts-block">
219219

0 commit comments

Comments
 (0)