Fix typo in Named.java (#2500)

This commit is contained in:
Andrew 2021-06-24 19:19:02 +02:00 committed by GitHub
parent 4c338fa1db
commit 1bf698785c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 * 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. * type by specifying this annotation on the type level.
* <p> * <p>
* 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. * or the key/value of a map type.
* <p> * <p>
* Example (both methods of {@code Titles} are capable to convert a string, but the ambiguity is resolved by applying * Example (both methods of {@code Titles} are capable to convert a string, but the ambiguity is resolved by applying