Skip to content

Commit 56f6bf8

Browse files
authored
Typo in createResource example user type (#740)
1 parent 6e59e72 commit 56f6bf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/solid-start/building-your-application/data-loading.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ It takes an async function and returns a [signal](/reference/basic-reactivity/cr
1515
```tsx {6-9}
1616
import { For, createResource } from "solid-js";
1717

18-
type Users = { name: string; house: string };
18+
type User = { name: string; house: string };
1919

2020
export default function Page() {
2121
const [users] = createResource(async () => {

0 commit comments

Comments
 (0)