Skip to content

Commit a03bdcd

Browse files
titanfiliphr
authored andcommitted
Misspelling correction
1 parent 2cb0467 commit a03bdcd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mapstruct-iterable-to-non-iterable/src/main/java/com/mycompany/mapper/SourceTargetMapper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
package com.mycompany.mapper;
77

88
import com.mycompany.mapper.util.FirstElement;
9-
import com.mycompany.mapper.util.IterableNonInterableUtil;
9+
import com.mycompany.mapper.util.IterableNonIterableUtil;
1010
import com.mycompany.mapper.util.LastElement;
1111
import org.mapstruct.Mapper;
1212
import org.mapstruct.Mapping;
1313
import org.mapstruct.factory.Mappers;
1414

1515

16-
@Mapper( uses = IterableNonInterableUtil.class )
16+
@Mapper( uses = IterableNonIterableUtil.class )
1717
public interface SourceTargetMapper {
1818

1919
SourceTargetMapper MAPPER = Mappers.getMapper( SourceTargetMapper.class );

mapstruct-iterable-to-non-iterable/src/main/java/com/mycompany/mapper/util/IterableNonInterableUtil.java renamed to mapstruct-iterable-to-non-iterable/src/main/java/com/mycompany/mapper/util/IterableNonIterableUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
* @author Sjaak Derksen
1414
*/
15-
public class IterableNonInterableUtil {
15+
public class IterableNonIterableUtil {
1616

1717
@FirstElement
1818
public <T> T first( List<T> in ) {

0 commit comments

Comments
 (0)