From 466b4926ed1c02df66e4502b2b3efe3590078677 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Sun, 12 Jul 2020 09:19:12 -0400 Subject: [PATCH] Fix comments --- src/components/input/input.tsx | 2 +- src/components/tag/tag.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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. */