diff --git a/docs/introduction/installation.md b/docs/introduction/installation.md index 442acfe6..2da56a71 100644 --- a/docs/introduction/installation.md +++ b/docs/introduction/installation.md @@ -21,7 +21,7 @@ cd ./my-marko-application npm run dev ``` -Open `src/routes/_index/+page.marko` in your editor to modify the index page. See the [routing documentation](https://github.com/marko-js/run#file-based-routing) to learn how to add additional pages to your project. +Open `src/routes/+page.marko` in your editor to modify the index page. See the [routing documentation](https://github.com/marko-js/run#file-based-routing) to learn how to add additional pages to your project. ## Manual Setup diff --git a/docs/tutorial/components-and-reactivity.md b/docs/tutorial/components-and-reactivity.md index 1a2a5b03..a31e3764 100644 --- a/docs/tutorial/components-and-reactivity.md +++ b/docs/tutorial/components-and-reactivity.md @@ -195,7 +195,7 @@ Actually, this is getting a little bit too complex to all put in one place. Mayb That's all we're going to build for now, but feel free to add more! Here are some ideas: - How about a new temperature unit? Maybe Kelvin or [Delisle](https://en.wikipedia.org/wiki/Delisle_scale)? -- Most of the world actually uses celsius 😅, maybe users should be able pick which unit to start with +- Most of the world actually uses celsius 😅, maybe users should be able to pick which unit to start with - What about wind chill? Apparently there are [standard formulas](https://en.wikipedia.org/wiki/Wind_chill) if "wind velocity" is known - Converting between temperatures is cool, but this system _could_ be generalized. What if it converted between weights, volumes, or distances? - Anything else! The opportunities are limitless!