Skip to content

Commit 6f731dc

Browse files
committed
format
1 parent 4c7cdaf commit 6f731dc

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

documentation/docs/config.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,7 @@
2525
},
2626
{
2727
"text": "Runes",
28-
"items": [
29-
{ "file": "runes/state.md" },
30-
{ "file": "runes/side-effects.md" }
31-
]
28+
"items": [{ "file": "runes/state.md" }, { "file": "runes/side-effects.md" }]
3229
},
3330
{
3431
"text": "Runtime",
@@ -47,7 +44,7 @@
4744
{ "file": "misc/typescript.md" },
4845
{ "file": "misc/custom-elements.md" },
4946
{ "file": "misc/reactivity-indepth.md" },
50-
{ "file": "misc/svelte-5-migration-guide.md" },
47+
{ "file": "misc/svelte-5-migration-guide.md" }
5148
]
5249
},
5350
{

documentation/docs/misc/typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ Using it together with `<svelte:component>` to restrict what kinds of component
170170
interface Props {
171171
// only components that have at most the "prop"
172172
// property required can be passed
173-
component: Component<{ prop: string }>
173+
component: Component<{ prop: string }>;
174174
}
175175
176176
let { component }: Props = $props();

0 commit comments

Comments
 (0)