From 5b8f78c59b919876fd54079df774b55dedb06408 Mon Sep 17 00:00:00 2001 From: m6xwzzz Date: Tue, 13 May 2025 20:09:14 +0800 Subject: [PATCH] fix typos --- proto/mars/envoy/v1beta1/tx.proto | 2 +- x/envoy/types/tx.pb.go | 2 +- x/gov/types/vesting.go | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/proto/mars/envoy/v1beta1/tx.proto b/proto/mars/envoy/v1beta1/tx.proto index ae0250c6..79eebaa1 100644 --- a/proto/mars/envoy/v1beta1/tx.proto +++ b/proto/mars/envoy/v1beta1/tx.proto @@ -86,7 +86,7 @@ message MsgSendFunds { ]; } -// MsgSendFundsResponse is the respones type for the Msg/SendFunds RPC method. +// MsgSendFundsResponse is the response type for the Msg/SendFunds RPC method. message MsgSendFundsResponse {} //------------------------------------------------------------------------------ diff --git a/x/envoy/types/tx.pb.go b/x/envoy/types/tx.pb.go index b76648b7..34f00293 100644 --- a/x/envoy/types/tx.pb.go +++ b/x/envoy/types/tx.pb.go @@ -205,7 +205,7 @@ func (m *MsgSendFunds) GetAmount() github_com_cosmos_cosmos_sdk_types.Coins { return nil } -// MsgSendFundsResponse is the respones type for the Msg/SendFunds RPC method. +// MsgSendFundsResponse is the response type for the Msg/SendFunds RPC method. type MsgSendFundsResponse struct { } diff --git a/x/gov/types/vesting.go b/x/gov/types/vesting.go index 7cd8881a..6e00dfa0 100644 --- a/x/gov/types/vesting.go +++ b/x/gov/types/vesting.go @@ -17,7 +17,7 @@ type InstantiateMsg struct { // ExecuteMsg corresponding to the Rust enum `mars_vesting::msg::ExecuteMsg` // -// NOTE: For covenience, we don't include other enum variants, as they are not +// NOTE: For convenience, we don't include other enum variants, as they are not // needed here. type ExecuteMsg struct { CreatePosition *CreatePosition `json:"create_position,omitempty"` @@ -35,7 +35,7 @@ type Withdraw struct{} // QueryMsg corresponding to the Rust enum `mars_vesting::msg::QueryMsg` // -// NOTE: For covenience, we don't include other enum variants, as they are not +// NOTE: For convenience, we don't include other enum variants, as they are not // needed here. type QueryMsg struct { VotingPower *VotingPowerQuery `json:"voting_power,omitempty"`