File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
converter/src/main/java/com/iluwatar/converter Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ public final T convertFromEntity(final U user) {
68
68
/**
69
69
* @param dtoUsers collection of DTO entities
70
70
* @return List of domain representation of provided entities retrieved by
71
- * mapping each of them with the convertion function
71
+ * mapping each of them with the conversion function
72
72
*/
73
73
public final List <U > createFromDtos (final Collection <T > dtoUsers ) {
74
74
return dtoUsers .stream ().map (this ::convertFromDto ).collect (Collectors .toList ());
@@ -77,7 +77,7 @@ public final List<U> createFromDtos(final Collection<T> dtoUsers) {
77
77
/**
78
78
* @param users collection of domain entities
79
79
* @return List of domain representation of provided entities retrieved by
80
- * mapping each of them with the convertion function
80
+ * mapping each of them with the conversion function
81
81
*/
82
82
public final List <T > createFromEntities (final Collection <U > users ) {
83
83
return users .stream ().map (this ::convertFromEntity ).collect (Collectors .toList ());
You can’t perform that action at this time.
0 commit comments