Skip to content

Commit

Permalink
Remove unnecessary spaces in SvelteKit (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
shamwela authored Nov 22, 2022
1 parent 3bd1834 commit 4526ef2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/7-webapp-features/2-router-link/svelte/sveltekit.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ With <a href="https://kit.svelte.dev/docs/routing#pages">SvelteKit</a>
```svelte
<ul>
<li>
<a href="/"> Home </a>
<a href="/">Home</a>
</li>
<li>
<a href="/about"> About us </a>
<a href="/about">About us</a>
</li>
</ul>
```

0 comments on commit 4526ef2

Please sign in to comment.