Skip to content

Commit e1081a8

Browse files
authored
Fixed Typo
1 parent f34bed2 commit e1081a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class SampleClass1 {
2424

2525
```java
2626
try {
27-
PbObjectMapper mapper = new ObjectMapper();
27+
PbObjectMapper mapper = new PbObjectMapper();
2828
byte[] sampleData = new byte[]{
2929
0x08, 0x14, // ID = 20
3030
0x12, 0x06, 0x72, 0x75, 0x6D, 0x70, 0x66, 0x63 // name = rumpfc
@@ -42,7 +42,7 @@ try {
4242

4343
```java
4444
try {
45-
PbObjectMapper mapper = new ObjectMapper();
45+
PbObjectMapper mapper = new PbObjectMapper();
4646

4747
SampleClass1 sample = new SampleClass1();
4848
sample.setId(20);
@@ -55,4 +55,4 @@ try {
5555
} catch(IOException ex) {
5656
ex.printStackTrace();
5757
}
58-
```
58+
```

0 commit comments

Comments
 (0)