From 664a4de3ed670177ca8d55284cd01d1a94a87553 Mon Sep 17 00:00:00 2001 From: Marin Atanasov Date: Mon, 31 Jul 2023 14:17:44 +0300 Subject: [PATCH] Fix docs --- packages/components/src/progress-bar/README.md | 2 +- packages/components/src/progress-bar/types.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/components/src/progress-bar/README.md b/packages/components/src/progress-bar/README.md index 021549d3f2b36f..fe095ff7834cd7 100644 --- a/packages/components/src/progress-bar/README.md +++ b/packages/components/src/progress-bar/README.md @@ -27,6 +27,6 @@ A CSS class to apply to the underlying `div` element, serving as a progress bar ##### `id`: `string` -The HTML `id` of the control element. This is necessary to be able to accessibly associate the label with that element. +The HTML `id` of the `progress` element. This is necessary to be able to accessibly associate the label with that element. - Required: No diff --git a/packages/components/src/progress-bar/types.ts b/packages/components/src/progress-bar/types.ts index 9037d4fc6f3da0..ba125df8367cf8 100644 --- a/packages/components/src/progress-bar/types.ts +++ b/packages/components/src/progress-bar/types.ts @@ -10,7 +10,7 @@ export type ProgressBarProps = { className?: string; /** - * The HTML `id` of the `progress` control element. + * The HTML `id` of the `progress` element. * This is necessary to be able to accessibly associate the label with that element. */ id?: string;