Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(material/components): fix typos in material components #30204

Merged
merged 1 commit into from
Dec 18, 2024
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/autocomplete/autocomplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export interface MatAutocompleteDefaultOptions {
/** Class or list of classes to be applied to the autocomplete's overlay panel. */
overlayPanelClass?: string | string[];

/** Wheter icon indicators should be hidden for single-selection. */
/** Whether icon indicators should be hidden for single-selection. */
hideSingleSelectionIndicator?: boolean;
}

Expand Down
2 changes: 1 addition & 1 deletion src/material/chips/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface MatChipsDefaultOptions {
/** The list of key codes that will trigger a chipEnd event. */
separatorKeyCodes: readonly number[] | ReadonlySet<number>;

/** Wheter icon indicators should be hidden for single-selection. */
/** Whether icon indicators should be hidden for single-selection. */
hideSingleSelectionIndicator?: boolean;
}

Expand Down
2 changes: 1 addition & 1 deletion src/material/list/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {InjectionToken} from '@angular/core';

/** Object that can be used to configure the default options for the list module. */
export interface MatListConfig {
/** Wheter icon indicators should be hidden for single-selection. */
/** Whether icon indicators should be hidden for single-selection. */
hideSingleSelectionIndicator?: boolean;
}

Expand Down
2 changes: 1 addition & 1 deletion src/material/select/select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export interface MatSelectConfig {
/** Class or list of classes to be applied to the menu's overlay panel. */
overlayPanelClass?: string | string[];

/** Wheter icon indicators should be hidden for single-selection. */
/** Whether icon indicators should be hidden for single-selection. */
hideSingleSelectionIndicator?: boolean;

/**
Expand Down
Loading