Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/material-experimental/mdc-checkbox/checkbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export class MatCheckboxChange {
})
export class MatCheckbox implements AfterViewInit, OnDestroy, ControlValueAccessor {
/**
* The `aria-label` attribute to use for the input element. In most cases, `arial-labelledby` will
* The `aria-label` attribute to use for the input element. In most cases, `aria-labelledby` will
* take precedence so this may be omitted.
*/
@Input('aria-label') ariaLabel: string = '';
Expand Down
2 changes: 1 addition & 1 deletion src/material/button-toggle/button-toggle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ export class MatButtonToggle extends _MatButtonToggleMixinBase implements OnInit
private _checked = false;

/**
* Attached to the aria-label attribute of the host element. In most cases, arial-labelledby will
* Attached to the aria-label attribute of the host element. In most cases, aria-labelledby will
* take precedence so this may be omitted.
*/
@Input('aria-label') ariaLabel: string;
Expand Down
2 changes: 1 addition & 1 deletion src/material/checkbox/checkbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export class MatCheckbox extends _MatCheckboxMixinBase implements ControlValueAc
AfterViewChecked, OnDestroy, CanColor, CanDisable, HasTabIndex, CanDisableRipple {

/**
* Attached to the aria-label attribute of the host element. In most cases, arial-labelledby will
* Attached to the aria-label attribute of the host element. In most cases, aria-labelledby will
* take precedence so this may be omitted.
*/
@Input('aria-label') ariaLabel: string = '';
Expand Down