Skip to content

Commit 12892ee

Browse files
committed
fixed String size constraint example (SPR-6517)
1 parent 0d413c7 commit 12892ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-framework-reference/src/validation.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,7 @@ public class PersonForm {
12901290
public class PersonForm {
12911291
12921292
@NotNull
1293-
@Max(64)
1293+
@Size(max=64)
12941294
private String name;
12951295
12961296
@Min(0)

0 commit comments

Comments
 (0)