From 4ae3bce260b1cd19c6bead8b3592144e878cccea Mon Sep 17 00:00:00 2001 From: yzpeninsula Date: Thu, 13 Sep 2018 18:34:10 +0800 Subject: [PATCH] Fix typo (#4497) Signed-off-by: yzpeninsula --- storage/buffer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/buffer.go b/storage/buffer.go index 55a0c604ea..fe89ce200a 100644 --- a/storage/buffer.go +++ b/storage/buffer.go @@ -83,7 +83,7 @@ func (b *BufferedSeriesIterator) Seek(t int64) bool { t0 := t - b.buf.delta // If the delta would cause us to seek backwards, preserve the buffer - // and just continue regular advancment while filling the buffer on the way. + // and just continue regular advancement while filling the buffer on the way. if t0 > b.lastTime { b.buf.reset()