diff --git a/src/docs/asciidoc/core/core-validation.adoc b/src/docs/asciidoc/core/core-validation.adoc index 2e711789beb8d49cdbc8606ddca41ae9c1ee94f6..dcb80d5e1b474b9dfc82f629016a3965a31d4c33 100644 --- a/src/docs/asciidoc/core/core-validation.adoc +++ b/src/docs/asciidoc/core/core-validation.adoc @@ -1554,7 +1554,7 @@ Each Bean Validation constraint consists of two parts. First, a `@Constraint` an that declares the constraint and its configurable properties. Second, an implementation of the `javax.validation.ConstraintValidator` interface that implements the constraint's behavior. To associate a declaration with an implementation, each `@Constraint` annotation -references a corresponding ValidationConstraint implementation class. At runtime, a +references a corresponding `ConstraintValidator` implementation class. At runtime, a `ConstraintValidatorFactory` instantiates the referenced implementation when the constraint annotation is encountered in your domain model.