Skip to content

Commit e508a9f

Browse files
Update colons everywhere
1 parent 3a4f4d5 commit e508a9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/guide/best-practices/accessibility.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ You can use this technique to create functional images.
426426

427427
```vue-html
428428
<form role="search">
429-
<label for="search" class="hidden-visually">Search:</label>
429+
<label for="search" class="hidden-visually">Search: </label>
430430
<input type="text" name="search" id="search" v-model="search" />
431431
<input
432432
type="image"
@@ -441,7 +441,7 @@ You can use this technique to create functional images.
441441

442442
```vue-html
443443
<form role="search">
444-
<label for="searchIcon" class="hidden-visually">Search:</label>
444+
<label for="searchIcon" class="hidden-visually">Search: </label>
445445
<input type="text" name="searchIcon" id="searchIcon" v-model="searchIcon" />
446446
<button type="submit">
447447
<i class="fas fa-search" aria-hidden="true"></i>

0 commit comments

Comments
 (0)