Skip to content

Commit 87d38a0

Browse files
authored
Merge pull request msgpack#481 from seratch/fix-typo
Fix typo
2 parents 06e9ee7 + 4a291fd commit 87d38a0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
* Small performance optimization of packString when the String size is larger than 512 bytes.
6060

6161
## 0.8.4
62-
* Embed bundle paramters for OSGi
62+
* Embed bundle parameters for OSGi
6363

6464
## 0.8.3
6565
* Fix a bug (#348), which wrongly overwrites the buffer before reading numeric data at the buffer boundary

msgpack-core/src/main/java/org/msgpack/core/MessagePacker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ public class MessagePacker
200200

201201
/**
202202
* Create an MessagePacker that outputs the packed data to the given {@link org.msgpack.core.buffer.MessageBufferOutput}.
203-
* This method is available for subclasses to override. Use MessagePack.PackerConfig.newPacker method to instanciate this implementation.
203+
* This method is available for subclasses to override. Use MessagePack.PackerConfig.newPacker method to instantiate this implementation.
204204
*
205205
* @param out MessageBufferOutput. Use {@link org.msgpack.core.buffer.OutputStreamBufferOutput}, {@link org.msgpack.core.buffer.ChannelBufferOutput} or
206206
* your own implementation of {@link org.msgpack.core.buffer.MessageBufferOutput} interface.

msgpack-core/src/main/java/org/msgpack/core/MessageUnpacker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ public class MessageUnpacker
204204

205205
/**
206206
* Create an MessageUnpacker that reads data from the given MessageBufferInput.
207-
* This method is available for subclasses to override. Use MessagePack.UnpackerConfig.newUnpacker method to instanciate this implementation.
207+
* This method is available for subclasses to override. Use MessagePack.UnpackerConfig.newUnpacker method to instantiate this implementation.
208208
*
209209
* @param in
210210
*/

msgpack-jackson/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This Jackson extension library is a component to easily read and write [MessageP
77

88
It extends standard Jackson streaming API (`JsonFactory`, `JsonParser`, `JsonGenerator`), and as such works seamlessly with all the higher level data abstractions (data binding, tree model, and pluggable extensions). For the details of Jackson-annotations, please see https://github.com/FasterXML/jackson-annotations.
99

10-
This library isn't compatibile with msgpack-java v0.6 or earlier by default in serialization/deserialization of POJO. See **Advanced usage** below for details.
10+
This library isn't compatible with msgpack-java v0.6 or earlier by default in serialization/deserialization of POJO. See **Advanced usage** below for details.
1111

1212
## Install
1313

0 commit comments

Comments
 (0)