Skip to content

Commit 1fcf65e

Browse files
committed
ugh
1 parent c97fc30 commit 1fcf65e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sites/svelte-5-preview/src/routes/docs/content/01-api/05-functions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This is handy when you want to pass some state to an external library or API tha
4949
Instantiates a component and mounts it to the given target:
5050

5151
```js
52-
// @errors: 2724
52+
// @errors: 2724 2305
5353
import { mount } from 'svelte';
5454
import App from './App.svelte';
5555

@@ -64,7 +64,7 @@ const app = mount(App, {
6464
Like `mount`, but will pick up any HTML rendered by Svelte's SSR output (from the `render` function) inside the target and makes it interactive:
6565

6666
```js
67-
// @errors: 2724
67+
// @errors: 2724 2305
6868
import { hydrate } from 'svelte';
6969
import App from './App.svelte';
7070

@@ -79,7 +79,7 @@ const app = hydrate(App, {
7979
Only available on the server and when compiling with the `server` option. Takes a component and returns an object with `html` and `head` properties on it, which you can use to populate the HTML when server-rendering your app:
8080

8181
```js
82-
// @errors: 2724
82+
// @errors: 2724 2305
8383
import { render } from 'svelte/server';
8484
import App from './App.svelte';
8585

0 commit comments

Comments
 (0)