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) {
6868 /**
6969 * @param dtoUsers collection of DTO entities
7070 * @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
7272 */
7373 public final List <U > createFromDtos (final Collection <T > dtoUsers ) {
7474 return dtoUsers .stream ().map (this ::convertFromDto ).collect (Collectors .toList ());
@@ -77,7 +77,7 @@ public final List<U> createFromDtos(final Collection<T> dtoUsers) {
7777 /**
7878 * @param users collection of domain entities
7979 * @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
8181 */
8282 public final List <T > createFromEntities (final Collection <U > users ) {
8383 return users .stream ().map (this ::convertFromEntity ).collect (Collectors .toList ());
You can’t perform that action at this time.
0 commit comments