Fix comments

This commit is contained in:
Cory LaViska
2020-07-12 09:19:12 -04:00
parent c2adecd21d
commit 466b4926ed
2 changed files with 2 additions and 2 deletions

View File

@@ -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. */

View File

@@ -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. */