Merge pull request #658 from johncming/fix-comment

chunks: correct the interface name
This commit is contained in:
Bartek Płotka 2019-07-12 01:21:01 +02:00 committed by GitHub
commit 45ee02add5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -366,7 +366,7 @@ func (b realByteSlice) Sub(start, end int) ByteSlice {
return b[start:end]
}
// Reader implements a SeriesReader for a serialized byte stream
// Reader implements a ChunkReader for a serialized byte stream
// of series data.
type Reader struct {
bs []ByteSlice // The underlying bytes holding the encoded series data.