Browse Source

Merge pull request #69 from greatroar/typo

Fix a typo in comment
Pierre Curto 5 years ago
parent
commit
9483c04d89
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lz4.go

+ 1 - 1
lz4.go

@@ -98,7 +98,7 @@ func blockSizeValueToIndex(size int) byte {
 // (http://fastcompression.blogspot.com/2013/04/lz4-streaming-format-final.html).
 // (http://fastcompression.blogspot.com/2013/04/lz4-streaming-format-final.html).
 //
 //
 // NB. in a Reader, in case of concatenated frames, the Header values may change between Read() calls.
 // NB. in a Reader, in case of concatenated frames, the Header values may change between Read() calls.
-// It is the caller responsibility to check them if necessary.
+// It is the caller's responsibility to check them if necessary.
 type Header struct {
 type Header struct {
 	BlockChecksum    bool   // Compressed blocks checksum flag.
 	BlockChecksum    bool   // Compressed blocks checksum flag.
 	NoChecksum       bool   // Frame checksum flag.
 	NoChecksum       bool   // Frame checksum flag.