From 52ac98e8b70302085e2febc3ea9545cd9a4aa7e6 Mon Sep 17 00:00:00 2001 From: Hosam Aly Date: Tue, 5 Nov 2024 18:26:29 +0000 Subject: [PATCH] Update beanvalidation.adoc: Fix a typo ContraintViolation => ConstraintViolation --- .../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 5669545ba279..5d087e564185 100644 --- a/framework-docs/modules/ROOT/pages/core/validation/beanvalidation.adoc +++ b/framework-docs/modules/ROOT/pages/core/validation/beanvalidation.adoc @@ -196,7 +196,7 @@ Kotlin:: When used as `org.springframework.validation.Validator`, `LocalValidatorFactoryBean` invokes the underlying `jakarta.validation.Validator`, and then adapts -``ContraintViolation``s to ``FieldError``s, and registers them with the `Errors` object +``ConstraintViolation``s to ``FieldError``s, and registers them with the `Errors` object passed into the `validate` method.