Skip to content

Commit 3ea8d69

Browse files
authored
docs(how-to/file-route-conventions): fix typo (#12422)
1 parent 20afd82 commit 3ea8d69

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

contributors.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
- dauletbaev
7070
- david-bezero
7171
- david-crespo
72+
- dcblair
7273
- decadentsavant
7374
- dgrijuela
7475
- DigitalNaut

docs/how-to/file-route-conventions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Usually your URLs aren't static but data-driven. Dynamic segments allow you to m
102102
| `/concerts/salt-lake-city` | `app/routes/concerts.$city.tsx` |
103103
| `/concerts/san-diego` | `app/routes/concerts.$city.tsx` |
104104

105-
The value will be parsed from the URL and pass it to various APIs. We call these values "URL Parameters". The most useful places to access the URL params are in [loaders] and [actions].
105+
The value will be parsed from the URL and passed to various APIs. We call these values "URL Parameters". The most useful places to access the URL params are in [loaders] and [actions].
106106

107107
```tsx
108108
export async function serverLoader({ params }) {

0 commit comments

Comments
 (0)