Skip to content

Commit 42c2f1b

Browse files
committed
fix(tooltip): Updating the aria label of the tooltip buttons.
1 parent 906cc25 commit 42c2f1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/material-examples/tooltip-manual/tooltip-manual-example.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
<span> Click the following buttons to... </span>
33
<button mat-button
44
(click)="tooltip.show()"
5-
aria-label="Button that progamatically shows a tooltip on another button"
5+
aria-label="Show tooltip on the button at the end of this section"
66
class="example-action-button">
77
show
88
</button>
99
<button mat-button
1010
(click)="tooltip.hide()"
11-
aria-label="Button that progamatically hides a tooltip on another button"
11+
aria-label="Hide tooltip on the button at the end of this section"
1212
class="example-action-button">
1313
hide
1414
</button>
1515
<button mat-button
1616
(click)="tooltip.toggle()"
17-
aria-label="Button that progamatically toggles a tooltip on another button to show/hide"
17+
aria-label="Show/Hide tooltip on the button at the end of this section"
1818
class="example-action-button">
1919
toggle show/hide
2020
</button>

0 commit comments

Comments
 (0)