Skip to content

Commit cefaad6

Browse files
authored
Update README.md
1 parent c0071ae commit cefaad6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
5656
various combinations so that user requirements can be fulfilled.
5757

5858
The 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

0 commit comments

Comments
 (0)