diff --git a/elements/pf-chip/pf-chip-group.ts b/elements/pf-chip/pf-chip-group.ts index 8c9fcba0d1..3e34e22da1 100644 --- a/elements/pf-chip/pf-chip-group.ts +++ b/elements/pf-chip/pf-chip-group.ts @@ -24,12 +24,12 @@ export class PfChipGroup extends LitElement { static readonly styles = [styles]; /** - * ARIA label for chip group that does not have a category name + * Accessible label for chip group that does not have a category name */ @property({ type: String }) label = ''; /** - * ARIA label for close button + * Accessible label for close button */ @property({ attribute: 'close-label', type: String }) closeLabel = 'Close'; diff --git a/elements/pf-chip/pf-chip.ts b/elements/pf-chip/pf-chip.ts index df5f96fb47..9e7263279e 100644 --- a/elements/pf-chip/pf-chip.ts +++ b/elements/pf-chip/pf-chip.ts @@ -20,7 +20,7 @@ export class PfChip extends LitElement { static readonly styles = [styles]; /** - * ARIA label for close button + * Accessible label for close button */ @property({ attribute: 'close-label', type: String }) closeLabel = 'Close'; diff --git a/elements/pf-select/pf-select.ts b/elements/pf-select/pf-select.ts index eb1c197829..a1171246c2 100644 --- a/elements/pf-select/pf-select.ts +++ b/elements/pf-select/pf-select.ts @@ -43,7 +43,7 @@ export class PfSelect extends LitElement { @property({ attribute: 'create-option-text', type: String }) createOptionText = ''; /** - * ARIA label for chip group used to describe chips + * Accessible label for chip group used to describe chips */ @property({ attribute: 'current-selections-label', type: String }) currentSelectionsLabel = 'Current selections';