From c9d0905b44cb2ace30792ee2923930aef066d8a9 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Thu, 22 Oct 2020 23:05:28 -0400 Subject: [PATCH] Fix typo --- src/components.d.ts | 4 ++-- src/components/icon-button/icon-button.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components.d.ts b/src/components.d.ts index 3c531f5d..fdaa5f7e 100644 --- a/src/components.d.ts +++ b/src/components.d.ts @@ -493,7 +493,7 @@ export namespace Components { */ "disabled": boolean; /** - * A description that gets read by screen readers and other assistive devices. For optimal acessibility, you should always include a label that describes what the icon button does. + * A description that gets read by screen readers and other assistive devices. For optimal accessibility, you should always include a label that describes what the icon button does. */ "label": string; /** @@ -2006,7 +2006,7 @@ declare namespace LocalJSX { */ "disabled"?: boolean; /** - * A description that gets read by screen readers and other assistive devices. For optimal acessibility, you should always include a label that describes what the icon button does. + * A description that gets read by screen readers and other assistive devices. For optimal accessibility, you should always include a label that describes what the icon button does. */ "label"?: string; /** diff --git a/src/components/icon-button/icon-button.tsx b/src/components/icon-button/icon-button.tsx index d7711809..af79dc57 100644 --- a/src/components/icon-button/icon-button.tsx +++ b/src/components/icon-button/icon-button.tsx @@ -26,7 +26,7 @@ export class IconButton { @Prop({ reflect: true }) src: string; /** - * A description that gets read by screen readers and other assistive devices. For optimal acessibility, you should + * A description that gets read by screen readers and other assistive devices. For optimal accessibility, you should * always include a label that describes what the icon button does. */ @Prop({ reflect: true }) label: string;