diff --git a/README.md b/README.md index 465f2dcc2..9099b91b1 100644 --- a/README.md +++ b/README.md @@ -248,7 +248,7 @@ public class EvenCharNumValidator implements FormatValidator { if (subject.length() % 2 == 0) { return Optional.empty(); } else { - return Optional.of(String.format("the length of srtring [%s] is odd", subject)); + return Optional.of(String.format("the length of string [%s] is odd", subject)); } }