Fix typo in JavaDoc

This commit is contained in:
valery1707 2021-09-21 10:42:25 +03:00 committed by Filip Hrisafov
parent 8b84f5b7d7
commit f167e7a20c

View File

@ -54,7 +54,7 @@ import static org.mapstruct.NullValueCheckStrategy.ON_IMPLICIT_CONVERSION;
* <p><strong>Example 2:</strong> Mapping properties with different names</p>
* <pre><code class='java'>
* // We need map Human.companyName to HumanDto.company
* // we can use &#64;Mapping with parameters {@link #source()} and {@link #source()}
* // we can use &#64;Mapping with parameters {@link #source()} and {@link #target()}
* &#64;Mapper
* public interface HumanMapper {
* &#64;Mapping(source="companyName", target="company")
@ -476,6 +476,4 @@ public @interface Mapping {
*/
Class<? extends Annotation> mappingControl() default MappingControl.class;
}