From 4c8d81bcb4df3b885c1caf2a6b887ad4d0659a76 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Sun, 15 Jul 2018 16:17:01 +0200 Subject: [PATCH] Fix typo Issue: SPR-17042 --- src/docs/asciidoc/core/core-validation.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/core/core-validation.adoc b/src/docs/asciidoc/core/core-validation.adoc index a3a99e624f63..4b0437cfb516 100644 --- a/src/docs/asciidoc/core/core-validation.adoc +++ b/src/docs/asciidoc/core/core-validation.adoc @@ -1555,7 +1555,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.