diff --git a/core/src/components.d.ts b/core/src/components.d.ts index 7a1b044b4c..e93ea3b137 100644 --- a/core/src/components.d.ts +++ b/core/src/components.d.ts @@ -1416,7 +1416,7 @@ export namespace Components { interface IonFabList { /** - * If `true`, the fab list will be show all fab buttons in the list. + * If `true`, the fab list will show all fab buttons in the list. */ 'activated': boolean; /** @@ -1426,7 +1426,7 @@ export namespace Components { } interface IonFabListAttributes extends StencilHTMLAttributes { /** - * If `true`, the fab list will be show all fab buttons in the list. + * If `true`, the fab list will show all fab buttons in the list. */ 'activated'?: boolean; /** diff --git a/core/src/components/fab-list/fab-list.tsx b/core/src/components/fab-list/fab-list.tsx index 2ce5e14a48..d9eb983140 100644 --- a/core/src/components/fab-list/fab-list.tsx +++ b/core/src/components/fab-list/fab-list.tsx @@ -13,7 +13,7 @@ export class FabList implements ComponentInterface { @Element() el!: HTMLIonFabElement; /** - * If `true`, the fab list will be show all fab buttons in the list. + * If `true`, the fab list will show all fab buttons in the list. */ @Prop() activated = false; diff --git a/core/src/components/fab-list/readme.md b/core/src/components/fab-list/readme.md index ec965456dd..5355c9441e 100644 --- a/core/src/components/fab-list/readme.md +++ b/core/src/components/fab-list/readme.md @@ -82,7 +82,7 @@ export default Example | Property | Attribute | Description | Type | Default | | ----------- | ----------- | ------------------------------------------------------------------- | --------------------------------------- | ---------- | -| `activated` | `activated` | If `true`, the fab list will be show all fab buttons in the list. | `boolean` | `false` | +| `activated` | `activated` | If `true`, the fab list will show all fab buttons in the list. | `boolean` | `false` | | `side` | `side` | The side the fab list will show on relative to the main fab button. | `"bottom" \| "end" \| "start" \| "top"` | `'bottom'` |