Skip to content

Commit 67d74f0

Browse files
committed
Merge pull request #1227 from SolaKun/master
correct misleading comment in tutorial
2 parents 1ecc6b5 + 8be34a4 commit 67d74f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ and as long as source and result types are compatible -- that is, if to-JSON, fr
376376
But here are couple of potentially useful use cases:
377377

378378
```java
379-
// Convert from int[] to List<Integer>
379+
// Convert from List<Integer> to int[]
380380
List<Integer> sourceList = ...;
381381
int[] ints = mapper.convertValue(sourceList, int[].class);
382382
// Convert a POJO into Map!

0 commit comments

Comments
 (0)