Skip to content

Commit ebb4380

Browse files
Typo of a file path (sveltejs#396)
1 parent 066af53 commit ebb4380

File tree

1 file changed

+1
-1
lines changed
  • content/tutorial/04-advanced-sveltekit/05-advanced-loading/03-await-parent

1 file changed

+1
-1
lines changed

content/tutorial/04-advanced-sveltekit/05-advanced-loading/03-await-parent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export async function load(+++{ parent }+++) {
3030
Finally, in `src/routes/sum/+page.js`, get parent data from both `load` functions:
3131

3232
```js
33-
/// file: src/sum/+page.js
33+
/// file: src/routes/sum/+page.js
3434
export async function load(+++{ parent }+++) {
3535
+++const { a, b } = await parent();+++
3636
return { +++c: a + b+++ };

0 commit comments

Comments
 (0)