Skip to content

Commit bfb7b90

Browse files
authored
fix: correct aria-label (sveltejs#208)
1 parent b14e691 commit bfb7b90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/tutorial/[slug]/Menu.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
<strong>{current.title}</strong>
179179
</h1>
180180

181-
<a href={current.next ? `/tutorial/${current.next.slug}` : undefined} aria-label="Previous">
181+
<a href={current.next ? `/tutorial/${current.next.slug}` : undefined} aria-label="Next">
182182
<Icon name="arrow-right" size={16} />
183183
</a>
184184
</header>

0 commit comments

Comments
 (0)