From 84d71073f13de5a28450c915909bc50fb8e73395 Mon Sep 17 00:00:00 2001 From: johncming Date: Thu, 11 Jul 2019 18:55:34 +0800 Subject: [PATCH] chunks: correct the interface name Signed-off-by: johncming --- chunks/chunks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chunks/chunks.go b/chunks/chunks.go index 7d1c57baf..3df4f257a 100644 --- a/chunks/chunks.go +++ b/chunks/chunks.go @@ -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.