From 59e89e7664d7bd6171266414fa0ca5e03dd78d67 Mon Sep 17 00:00:00 2001 From: Ricardo Domingos Date: Sat, 9 Dec 2017 13:13:24 +0100 Subject: [PATCH] consensus: Fix typo on ticker.go documentation --- consensus/ticker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/ticker.go b/consensus/ticker.go index 4762becc..f66856f9 100644 --- a/consensus/ticker.go +++ b/consensus/ticker.go @@ -68,7 +68,7 @@ func (t *timeoutTicker) Chan() <-chan timeoutInfo { } // ScheduleTimeout schedules a new timeout by sending on the internal tickChan. -// The timeoutRoutine is alwaya available to read from tickChan, so this won't block. +// The timeoutRoutine is always available to read from tickChan, so this won't block. // The scheduling may fail if the timeoutRoutine has already scheduled a timeout for a later height/round/step. func (t *timeoutTicker) ScheduleTimeout(ti timeoutInfo) { t.tickChan <- ti