diff --git a/docs/proto/proto-docs.md b/docs/proto/proto-docs.md index 248e09531..0d1b95b38 100644 --- a/docs/proto/proto-docs.md +++ b/docs/proto/proto-docs.md @@ -1608,7 +1608,7 @@ MsgUpdateParams is the request for updating module's params. ### MsgUpdateParamsResponse -MsgUpdateParamsResponse is the response for executiong a module's params update. +MsgUpdateParamsResponse is the response for executing a module's params update. diff --git a/e2e/chain_upgrade_test.go b/e2e/chain_upgrade_test.go index db6ef19e9..d770aa022 100644 --- a/e2e/chain_upgrade_test.go +++ b/e2e/chain_upgrade_test.go @@ -28,7 +28,7 @@ const ( blocksAfterUpgrade = int64(10) // The number of blocks to wait for after the upgrade has been applied. votingPeriod = "30s" // Reducing voting period for testing maxDepositPeriod = "10s" // Reducing max deposit period for testing - depositDenom = "ustars" // The bond denom to be used to deposit for propsals + depositDenom = "ustars" // The bond denom to be used to deposit for proposals ) func TestChainUpgrade(t *testing.T) { diff --git a/proto/publicawesome/stargaze/globalfee/v1/query.proto b/proto/publicawesome/stargaze/globalfee/v1/query.proto index c415301b7..3f0ef93e3 100644 --- a/proto/publicawesome/stargaze/globalfee/v1/query.proto +++ b/proto/publicawesome/stargaze/globalfee/v1/query.proto @@ -8,11 +8,11 @@ option go_package = "github.com/public-awesome/stargaze/v15/x/globalfee/types"; // Query defines the gRPC querier service. service Query { - // CodeAuthorization returns authrozation by specific code id. + // CodeAuthorization returns authorization by specific code id. rpc CodeAuthorization(QueryCodeAuthorizationRequest) returns (QueryCodeAuthorizationResponse) { option (google.api.http).get = "/stargaze/globalfee/v1/code_authorization/{code_id}"; } - // ContractAuthorization returns authrozation for specific contract address. + // ContractAuthorization returns authorization for specific contract address. rpc ContractAuthorization(QueryContractAuthorizationRequest) returns (QueryContractAuthorizationResponse) { option (google.api.http).get = "/stargaze/globalfee/v1/contract_authorization/{contract_address}"; } diff --git a/proto/publicawesome/stargaze/globalfee/v1/tx.proto b/proto/publicawesome/stargaze/globalfee/v1/tx.proto index 84a35c652..6fad5c088 100644 --- a/proto/publicawesome/stargaze/globalfee/v1/tx.proto +++ b/proto/publicawesome/stargaze/globalfee/v1/tx.proto @@ -63,7 +63,7 @@ message MsgRemoveContractAuthorization { string contract_address = 2; } -// MsgRemoveContractAuthorizationResponse is the repsonse for executing a contract authorization removal. +// MsgRemoveContractAuthorizationResponse is the response for executing a contract authorization removal. message MsgRemoveContractAuthorizationResponse {} // MsgUpdateParams is the request for updating module's params. @@ -77,5 +77,5 @@ message MsgUpdateParams { ]; } -// MsgUpdateParamsResponse is the response for executiong a module's params update. +// MsgUpdateParamsResponse is the response for executing a module's params update. message MsgUpdateParamsResponse {}