From 13ae2d72717ca204df8ea743155676862bba36df Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Thu, 9 Apr 2020 10:54:59 -0700 Subject: [PATCH] style: format forms validators to fix lint error (#36546) PR Close #36546 --- packages/forms/src/validators.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/forms/src/validators.ts b/packages/forms/src/validators.ts index ccb37f76fd..a1e8f8a157 100644 --- a/packages/forms/src/validators.ts +++ b/packages/forms/src/validators.ts @@ -268,10 +268,10 @@ export class Validators { * Validator that requires the length of the control's value to be greater than or equal * to the provided minimum length. This validator is also provided by default if you use the * the HTML5 `minlength` attribute. Note that the `minLength` validator is intended to be used - * only for types that have a numeric `length` property, such as strings or arrays. The `minLength` - * validator logic is also not invoked for values when their `length` property is 0 (for example in - * case of an empty string or an empty array), to support optional controls. You can use - * the standard `required` validator if empty values should not be considered valid. + * only for types that have a numeric `length` property, such as strings or arrays. The + * `minLength` validator logic is also not invoked for values when their `length` property is 0 + * (for example in case of an empty string or an empty array), to support optional controls. You + * can use the standard `required` validator if empty values should not be considered valid. * * @usageNotes *