From 1bf698785c795bf7d3832a129ff5ca3cb170ff3e Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 24 Jun 2021 19:19:02 +0200 Subject: [PATCH] Fix typo in Named.java (#2500) --- core/src/main/java/org/mapstruct/Named.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/mapstruct/Named.java b/core/src/main/java/org/mapstruct/Named.java index 0b6e8b53a..773886a7b 100644 --- a/core/src/main/java/org/mapstruct/Named.java +++ b/core/src/main/java/org/mapstruct/Named.java @@ -14,7 +14,7 @@ import java.lang.annotation.Target; * Marks mapping methods with the given qualifier name. Can be used to qualify a single method or all methods of a given * type by specifying this annotation on the type level. *

- * Will be used to to select the correct mapping methods when mapping a bean property type, element of an iterable type + * Will be used to select the correct mapping methods when mapping a bean property type, element of an iterable type * or the key/value of a map type. *

* Example (both methods of {@code Titles} are capable to convert a string, but the ambiguity is resolved by applying