docs(forms): 修复错别字

原译文:
验证器就是一个函数,它可以处理单个 `FormControl` 好一组控件,
修改后:
验证器就是一个函数,它可以处理单个 `FormControl` 或一组控件,
This commit is contained in:
DD
2019-05-15 10:26:03 +08:00
committed by 雪狼
parent b046dfdb6e
commit d73409a3dd
+1 -1
View File
@@ -77,7 +77,7 @@ const EMAIL_REGEXP =
* A validator is a function that processes a `FormControl` or collection of
* controls and returns an error map or null. A null map means that validation has passed.
*
* 验证器就是一个函数,它可以处理单个 `FormControl` 一组控件,并返回一个错误映射表(map)或 null。null 表示验证已通过了。
* 验证器就是一个函数,它可以处理单个 `FormControl` 一组控件,并返回一个错误映射表(map)或 null。null 表示验证已通过了。
*
* @see [Form Validation](/guide/form-validation)
*