From 5ae49175afa7dac209e7c92544de2c213fcc936c Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Fri, 4 Sep 2020 17:11:25 -0400 Subject: [PATCH] Fix typo --- src/components.d.ts | 4 ++-- src/components/button-group/button-group.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components.d.ts b/src/components.d.ts index 6780515bd..c108421be 100644 --- a/src/components.d.ts +++ b/src/components.d.ts @@ -198,7 +198,7 @@ export namespace Components { } interface SlButtonGroup { /** - * A label to use for the button groups `aria-label` attribute. + * A label to use for the button group's `aria-label` attribute. */ "label": string; } @@ -1601,7 +1601,7 @@ declare namespace LocalJSX { } interface SlButtonGroup { /** - * A label to use for the button groups `aria-label` attribute. + * A label to use for the button group's `aria-label` attribute. */ "label"?: string; } diff --git a/src/components/button-group/button-group.tsx b/src/components/button-group/button-group.tsx index a239a5a20..e9bf0027e 100644 --- a/src/components/button-group/button-group.tsx +++ b/src/components/button-group/button-group.tsx @@ -17,7 +17,7 @@ import { Component, Prop, h } from '@stencil/core'; export class ButtonGroup { buttonGroup: HTMLElement; - /** A label to use for the button groups `aria-label` attribute. */ + /** A label to use for the button group's `aria-label` attribute. */ @Prop() label = ''; connectedCallback() {