Skip to content

Commit 89db305

Browse files
committed
Merge branch 'master' of github.com:FasterXML/jackson-databind
2 parents f09ccac + 67d74f0 commit 89db305

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)