From 9f2612c6fde6dd5da68c8545f7f3c10d37a07d2e Mon Sep 17 00:00:00 2001 From: William Banfield Date: Tue, 1 Feb 2022 14:37:12 -0500 Subject: [PATCH] typo --- types/proposal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/proposal.go b/types/proposal.go index a6d33ff22..c373a661b 100644 --- a/types/proposal.go +++ b/types/proposal.go @@ -100,7 +100,7 @@ func (p *Proposal) IsTimely(recvTime time.Time, sp SynchronyParams, round int32) msgDelay := sp.MessageDelay * roundModifier if msgDelay <= 0 { - // In the case that messaeg delay overflows after applying the round modifier, use the maximum + // In the case that message delay overflows after applying the round modifier, use the maximum // duration instead. msgDelay = time.Nanosecond * math.MaxInt64 }