From 9c33199a667a56f89b5a4086b94b6290a430cdd5 Mon Sep 17 00:00:00 2001 From: Matt Drees Date: Sat, 25 May 2019 03:34:30 -0600 Subject: [PATCH] Improve terms in qualifier docs (#1814) This sentence is talking about `@Target`, not `@Retention`. Also, let's use 'type' instead of 'class' to line up with `ElementType.TYPE`. --- .../src/main/asciidoc/mapstruct-reference-guide.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc b/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc index a08adbae5..ba9b2119c 100644 --- a/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc +++ b/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc @@ -1344,7 +1344,7 @@ public @interface GermanToEnglish { ---- ==== -Please take note of the retention `TitleTranslator` on class level, `EnglishToGerman`, `GermanToEnglish` on method level! +Please take note of the target `TitleTranslator` on type level, `EnglishToGerman`, `GermanToEnglish` on method level! Then, using the qualifiers, the mapping could look like this: