Fix some typo in comments (#6730)

Signed-off-by: Kim Bao Long <longkb@vn.fujitsu.com>
This commit is contained in:
LongKB 2020-01-31 13:41:52 +07:00 committed by GitHub
parent 3c4c01eae2
commit 1ebcf3d5e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -981,7 +981,7 @@ func TestTombstoneCleanFail(t *testing.T) {
blockDir := createBlock(t, db.Dir(), genSeries(1, 1, 0, 1))
block, err := OpenBlock(nil, blockDir, nil)
testutil.Ok(t, err)
// Add some some fake tombstones to trigger the compaction.
// Add some fake tombstones to trigger the compaction.
tomb := tombstones.NewMemTombstones()
tomb.AddInterval(0, tombstones.Interval{Mint: 0, Maxt: 1})
block.tombstones = tomb

View file

@ -19,7 +19,7 @@ import (
_ "github.com/prometheus/prometheus/tsdb/goversion"
)
// This test is is intentionally blank and exists only so `go test` believes
// This test is intentionally blank and exists only so `go test` believes
// there is something to test.
//
// The blank import above is actually what invokes the test of this package. If