From 00c70023544f918899d80c5fc8bfc7c3d87ef595 Mon Sep 17 00:00:00 2001 From: Michael Kunze Date: Thu, 18 Apr 2024 09:06:04 +0200 Subject: [PATCH] Fix typo in class name Closes gh-32664 --- .../modules/ROOT/pages/core/validation/beanvalidation.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework-docs/modules/ROOT/pages/core/validation/beanvalidation.adoc b/framework-docs/modules/ROOT/pages/core/validation/beanvalidation.adoc index ae12ee8ea2b..b5bf6562dfe 100644 --- a/framework-docs/modules/ROOT/pages/core/validation/beanvalidation.adoc +++ b/framework-docs/modules/ROOT/pages/core/validation/beanvalidation.adoc @@ -438,7 +438,7 @@ A `ConstraintViolation` on `Person.name()` is adapted to a `FieldError` with the To customize the default message, you can add properties to xref:core/beans/context-introduction.adoc#context-functionality-messagesource[MessageSource] resource bundles using any of the above errors codes and message arguments. Note also that the -message argument `"name"` is itself a `MessagreSourceResolvable` with error codes +message argument `"name"` is itself a `MessageSourceResolvable` with error codes `"student.name"` and `"name"` and can customized too. For example: Properties::