From e7427f59daacd1e68e83a2afdcaeb99c413bf68a Mon Sep 17 00:00:00 2001 From: David Wheatley Date: Sun, 9 May 2021 22:33:33 +0100 Subject: [PATCH] Fix typo in LoadingIndicator docblock --- framework/core/js/src/common/components/LoadingIndicator.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/core/js/src/common/components/LoadingIndicator.tsx b/framework/core/js/src/common/components/LoadingIndicator.tsx index a4b024a7b..7b1cc8841 100644 --- a/framework/core/js/src/common/components/LoadingIndicator.tsx +++ b/framework/core/js/src/common/components/LoadingIndicator.tsx @@ -3,7 +3,7 @@ import classList from '../utils/classList'; export interface LoadingIndicatorAttrs extends ComponentAttrs { /** - * Custom classes fro the loading indicator's container. + * Custom classes for the loading indicator's container. */ className?: string; /** @@ -11,7 +11,7 @@ export interface LoadingIndicatorAttrs extends ComponentAttrs { */ containerClassName?: string; /** - * Optional size to specify for the loading indicator. + * Optional size for the loading indicator. */ size?: 'large' | 'medium' | 'small'; /**