From b3966ab4eb003f597aa38af0450ee6308e7560ac Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Tue, 24 Aug 2021 20:39:28 -0400 Subject: [PATCH] Fix typo in comment --- blockstore/timed.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blockstore/timed.go b/blockstore/timed.go index b21dceeb8..b279943b6 100644 --- a/blockstore/timed.go +++ b/blockstore/timed.go @@ -49,7 +49,7 @@ func (t *TimedCacheBlockstore) Start(_ context.Context) error { t.closeCh = make(chan struct{}) // Create this timer before starting the goroutine. Otherwise, creating the timer will race - // with addint time to the mock clock, and we could add time _first_, then stall waiting for + // with adding time to the mock clock, and we could add time _first_, then stall waiting for // a timer that'll never fire. ticker := t.clock.Ticker(t.interval) go func() {