diff --git a/x/gov/types/v1/params.go b/x/gov/types/v1/params.go index fd87c953f5..47ed21b582 100644 --- a/x/gov/types/v1/params.go +++ b/x/gov/types/v1/params.go @@ -210,7 +210,7 @@ func (p Params) ValidateBasic(addressCodec address.Codec) error { return fmt.Errorf("expedited voting period must be positive: %s", p.ExpeditedVotingPeriod) } if p.ExpeditedVotingPeriod.Seconds() >= p.VotingPeriod.Seconds() { - return fmt.Errorf("expedited voting period %s must be strictly less that the regular voting period %s", p.ExpeditedVotingPeriod, p.VotingPeriod) + return fmt.Errorf("expedited voting period %s must be strictly less than the regular voting period %s", p.ExpeditedVotingPeriod, p.VotingPeriod) } for _, addr := range p.OptimisticAuthorizedAddresses {