From 21d77dd7c7784aa45d2b3851d254fc1c8acdc02e Mon Sep 17 00:00:00 2001 From: Oleksandr Kravchuk Date: Thu, 4 Mar 2021 19:20:13 +0200 Subject: [PATCH] Fixed typo in ref docs --- src/docs/asciidoc/core/core-validation.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/asciidoc/core/core-validation.adoc b/src/docs/asciidoc/core/core-validation.adoc index db0c054ffb8..872d14ae2fe 100644 --- a/src/docs/asciidoc/core/core-validation.adoc +++ b/src/docs/asciidoc/core/core-validation.adoc @@ -1023,8 +1023,8 @@ on the target field, or you might want to run a `Converter` only if a specific m } ---- -A good example of a `ConditionalGenericConverter` is an `EntityConverter` that converts -between a persistent entity identifier and an entity reference. Such an `EntityConverter` +A good example of a `ConditionalGenericConverter` is an `IdToEntityConverter` that converts +between a persistent entity identifier and an entity reference. Such an `IdToEntityConverter` might match only if the target entity type declares a static finder method (for example, `findAccount(Long)`). You might perform such a finder method check in the implementation of `matches(TypeDescriptor, TypeDescriptor)`.