Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/introduction/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/components-and-reactivity.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down