Skip to content

Commit 61d341d

Browse files
committed
Merge pull request msgpack#355 from marenzo/patch-1
readme fix - wrong msgpack factory class
2 parents a40454f + 8d9212b commit 61d341d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

msgpack-jackson/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ dependencies {
3232

3333
## Usage
3434

35-
Only thing you need to do is to instantiate MessagePackFormatFactory and pass it to the constructor of ObjectMapper.
35+
Only thing you need to do is to instantiate MessagePackFactory and pass it to the constructor of ObjectMapper.
3636

3737
```
38-
ObjectMapper objectMapper = new ObjectMapper(new MessagePackFormatFactory());
38+
ObjectMapper objectMapper = new ObjectMapper(new MessagePackFactory());
3939
ExamplePojo orig = new ExamplePojo("komamitsu");
4040
byte[] bytes = objectMapper.writeValueAsBytes(orig);
4141
ExamplePojo value = objectMapper.readValue(bytes, ExamplePojo.class);

0 commit comments

Comments
 (0)