Skip to content

Commit 209f2e9

Browse files
authored
Fix typo in overview.md (#9360)
* Fix typo in overview.md * Update contributors.yml
1 parent cb7f510 commit 209f2e9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

contributors.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@
8282
- ms10596
8383
- noisypigeon
8484
- p13i
85+
- parched
8586
- paulsmithkc
8687
- pcattori
8788
- petersendidit

docs/start/overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,14 +245,14 @@ If `<Project />` renders the following links, the hrefs of the links will resolv
245245

246246
| In `<Project>` @ `/home/project/123` | Resolved `<a href>` |
247247
| ------------------------------------ | ------------------------ |
248-
| `<Link to="abc">` | `/home/projects/123/abc` |
249-
| `<Link to=".">` | `/home/projects/123` |
248+
| `<Link to="abc">` | `/home/project/123/abc` |
249+
| `<Link to=".">` | `/home/project/123` |
250250
| `<Link to="..">` | `/home` |
251-
| `<Link to=".." relative="path">` | `/home/projects` |
251+
| `<Link to=".." relative="path">` | `/home/project` |
252252

253253
Note that the first `..` removes both segments of the `project/:projectId` route. By default, the `..` in relative links traverse the route hierarchy, not the URL segments. Adding `relative="path"` in the next example allows you to traverse the path segments instead.
254254

255-
Relative links are always relative to the route path they are _rendered in_, not to the full URL. That means if the user navigates deeper with `<Link to="abc">` to `<Task />` at the URL `/home/projects/123/abc`, the hrefs in `<Project>` will not change (contrary to plain `<a href>`, a common problem with client side routers).
255+
Relative links are always relative to the route path they are _rendered in_, not to the full URL. That means if the user navigates deeper with `<Link to="abc">` to `<Task />` at the URL `/home/project/123/abc`, the hrefs in `<Project>` will not change (contrary to plain `<a href>`, a common problem with client side routers).
256256

257257
## Data Loading
258258

0 commit comments

Comments
 (0)