diff --git a/packages/forms/src/validators.ts b/packages/forms/src/validators.ts index 5e32394edf..66440a8792 100644 --- a/packages/forms/src/validators.ts +++ b/packages/forms/src/validators.ts @@ -293,7 +293,7 @@ export class Validators { * ``` * * @returns A validator function that returns an error map with the - * `minlength` if the validation check fails, otherwise `null`. + * `minlength` property if the validation check fails, otherwise `null`. * * @see `updateValueAndValidity()` * @@ -576,4 +576,4 @@ export function getControlValidators(control: AbstractControl): ValidatorFn|Vali export function getControlAsyncValidators(control: AbstractControl): AsyncValidatorFn| AsyncValidatorFn[]|null { return (control as any)._rawAsyncValidators as AsyncValidatorFn | AsyncValidatorFn[] | null; -} \ No newline at end of file +}