From 449f5e6c7f1fc77ae91473d4c09cd655d2d8bb66 Mon Sep 17 00:00:00 2001 From: Christos Hrousis Date: Sun, 10 Oct 2021 13:24:28 +1100 Subject: [PATCH] style: typo. --- src/components/progress-bar/progress-bar.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/progress-bar/progress-bar.ts b/src/components/progress-bar/progress-bar.ts index 7d3958061..5e6e39bef 100644 --- a/src/components/progress-bar/progress-bar.ts +++ b/src/components/progress-bar/progress-bar.ts @@ -30,13 +30,13 @@ export default class SlProgressBar extends LitElement { /** When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state. */ @property({ type: Boolean, reflect: true }) indeterminate = false; - /** When set, will place a hoverable title on the progress ring. */ + /** When set, will place a hoverable title on the progress bar. */ @property() title: string; - /** When set, will place a label on the progress ring. */ + /** When set, will place a label on the progress bar. */ @property() ariaLabel: string; - /** When set, will place a labelledby on the progress ring. */ + /** When set, will place a labelledby on the progress bar. */ @property() ariaLabelledBy: string; render() {