Skip to content

Commit

Permalink
Remove some extra whitespaces. Closes #8188.
Browse files Browse the repository at this point in the history
  • Loading branch information
timdorr authored and mjackson committed Nov 5, 2021
1 parent 5f757ce commit d7e00a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/upgrading/v5.md
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ function Users() {
<div>
<h2>
{/* This links to /users - the current route */}
<Link to=".">Users</Link>{" "}
<Link to=".">Users</Link>{
</h2>

<ul>
Expand All @@ -443,17 +443,17 @@ function UserProfile() {
<div>
<h2>
{/* This links to /users - the parent route */}
<Link to="..">All Users</Link>{" "}
<Link to="..">All Users</Link>
</h2>

<h2>
{/* This links to /users/:id - the current route */}
<Link to=".">User Profile</Link>{" "}
<Link to=".">User Profile</Link>
</h2>

<h2>
{/* This links to /users/mj - a "sibling" route */}
<Link to="../mj">MJ</Link>{" "}
<Link to="../mj">MJ</Link>
</h2>
</div>
);
Expand Down

0 comments on commit d7e00a7

Please sign in to comment.