1
0
mirror of https://github.com/flarum/core.git synced 2025-07-17 14:51:19 +02:00

Fix typo in LoadingIndicator docblock

This commit is contained in:
David Wheatley
2021-05-09 22:33:33 +01:00
committed by GitHub
parent 0704952b5c
commit e7427f59da

View File

@@ -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';
/**