From d37871af50c0cc65b74829f9bd529e6a20ea86ec Mon Sep 17 00:00:00 2001 From: Cosmos SDK <113218068+github-prbot@users.noreply.github.com> Date: Tue, 5 Mar 2024 13:58:02 +0100 Subject: [PATCH] chore: fix spelling errors (#19649) Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> --- x/gov/keeper/proposal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/gov/keeper/proposal.go b/x/gov/keeper/proposal.go index 4529a80d53..de732b8760 100644 --- a/x/gov/keeper/proposal.go +++ b/x/gov/keeper/proposal.go @@ -113,7 +113,7 @@ func (k Keeper) SubmitProposal(ctx context.Context, messages []sdk.Msg, metadata return types.ErrInvalidProposalContent.Wrapf("failed to run legacy handler %s, %+v", content.ProposalRoute(), err) } - return errors.New("we don't want to execude the proposal, we just want to check if it can be executed") + return errors.New("we don't want to execute the proposal, we just want to check if it can be executed") }); errors.Is(err, types.ErrInvalidProposalContent) { return v1.Proposal{}, err }