File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ packages, include:
3535- Dependency-free package: there is only pure Dart code.
3636- Object-oriented mindset: validation elements are ** immutable**
3737 objects that can be combined in various configurations.
38- - Classes with short - yet meaningful - names like ` Req ` for a required field ;
38+ - Classes with short - yet meaningful - names like ` Req ` for required fields ;
3939 ` ReqEmail ` for a non-empty, well-formed email; ` Len ` for length constraints;
4040 ` Int ` for integer-only values; and so on.
4141- Easy-to-compose validators: for example, the ` Trim(Email()) ` command produces
@@ -56,7 +56,7 @@ A flexible package provides components that can be selected and grouped in
5656various combinations so that user requirements can be fulfilled.
5757
5858The code below shows how you can easily group the classes ` Rules ` , ` Req ` , ` Len ` ,
59- and ` Email ` to create a kind of _ 'required-50-characters-email '_ constraint.
59+ and ` Email ` to create a kind of _ 'required-email-maximum- 50-characters'_ constraint.
6060
6161``` dart
6262 @override
You can’t perform that action at this time.
0 commit comments