diff --git a/src/components/input/input.tsx b/src/components/input/input.tsx index 4e115c48e..8a80c22cc 100644 --- a/src/components/input/input.tsx +++ b/src/components/input/input.tsx @@ -50,7 +50,7 @@ export class Input { /** The input's value attribute. */ @Prop({ mutable: true }) value: string = ''; - /** Set to true to draw a pill-style button with rounded edges. */ + /** Set to true to draw a pill-style input with rounded edges. */ @Prop() pill = false; /** The input's label. */ diff --git a/src/components/tag/tag.tsx b/src/components/tag/tag.tsx index 0ab11ad00..533946f0a 100644 --- a/src/components/tag/tag.tsx +++ b/src/components/tag/tag.tsx @@ -25,7 +25,7 @@ export class Tag { /** The tag's size. */ @Prop() size: 'small' | 'medium' | 'large' = 'medium'; - /** Set to true to draw a pill-style button with rounded edges. */ + /** Set to true to draw a pill-style tag with rounded edges. */ @Prop() pill = false; /** Set to true to make the tag removable. */