diff --git a/proto/cosmos/app/v1alpha1/config.proto b/proto/cosmos/app/v1alpha1/config.proto index 1aac4b4396..f285d6ff1c 100644 --- a/proto/cosmos/app/v1alpha1/config.proto +++ b/proto/cosmos/app/v1alpha1/config.proto @@ -34,7 +34,7 @@ message ModuleConfig { // cosmos.bank.module.v2.Module, the app-specific name "bank" stays the same // and the framework knows that the v2 module should receive all the same state // that the v1 module had. Note: modules should provide info on which versions - // they can migrate from in the ModuleDescriptor.can_migration_from field. + // they can migrate from in the ModuleDescriptor.can_migrate_from field. string name = 1; // config is the config object for the module. Module config messages should @@ -54,4 +54,4 @@ message GolangBinding { // implementation is the implementing type which will be supplied when an input of type interface is requested string implementation = 2; -} \ No newline at end of file +} diff --git a/proto/cosmos/authz/v1beta1/query.proto b/proto/cosmos/authz/v1beta1/query.proto index f8cff44847..3e25df99cf 100644 --- a/proto/cosmos/authz/v1beta1/query.proto +++ b/proto/cosmos/authz/v1beta1/query.proto @@ -34,7 +34,7 @@ message QueryGrantsRequest { string grantee = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // Optional, msg_type_url, when set, will query only grants matching given msg type. string msg_type_url = 3; - // pagination defines an pagination for the request. + // pagination defines a pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 4; } @@ -42,7 +42,7 @@ message QueryGrantsRequest { message QueryGrantsResponse { // authorizations is a list of grants granted for grantee by granter. repeated Grant grants = 1; - // pagination defines an pagination for the response. + // pagination defines a pagination for the response. cosmos.base.query.v1beta1.PageResponse pagination = 2; } @@ -50,7 +50,7 @@ message QueryGrantsResponse { message QueryGranterGrantsRequest { string granter = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; - // pagination defines an pagination for the request. + // pagination defines a pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; } @@ -58,7 +58,7 @@ message QueryGranterGrantsRequest { message QueryGranterGrantsResponse { // grants is a list of grants granted by the granter. repeated GrantAuthorization grants = 1; - // pagination defines an pagination for the response. + // pagination defines a pagination for the response. cosmos.base.query.v1beta1.PageResponse pagination = 2; } @@ -66,7 +66,7 @@ message QueryGranterGrantsResponse { message QueryGranteeGrantsRequest { string grantee = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; - // pagination defines an pagination for the request. + // pagination defines a pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; } @@ -74,6 +74,6 @@ message QueryGranteeGrantsRequest { message QueryGranteeGrantsResponse { // grants is a list of grants granted to the grantee. repeated GrantAuthorization grants = 1; - // pagination defines an pagination for the response. + // pagination defines a pagination for the response. cosmos.base.query.v1beta1.PageResponse pagination = 2; } diff --git a/proto/cosmos/base/abci/v1beta1/abci.proto b/proto/cosmos/base/abci/v1beta1/abci.proto index 7438d5e00d..c3e768983d 100644 --- a/proto/cosmos/base/abci/v1beta1/abci.proto +++ b/proto/cosmos/base/abci/v1beta1/abci.proto @@ -61,7 +61,7 @@ message ABCIMessageLog { repeated StringEvent events = 3 [(gogoproto.castrepeated) = "StringEvents", (gogoproto.nullable) = false]; } -// StringEvent defines en Event object wrapper where all the attributes +// StringEvent defines an Event object wrapper where all the attributes // contain key/value pairs that are strings instead of raw bytes. message StringEvent { option (gogoproto.stringer) = true; diff --git a/proto/cosmos/base/reflection/v2alpha1/reflection.proto b/proto/cosmos/base/reflection/v2alpha1/reflection.proto index 795d2d2c49..25e0d58c85 100644 --- a/proto/cosmos/base/reflection/v2alpha1/reflection.proto +++ b/proto/cosmos/base/reflection/v2alpha1/reflection.proto @@ -61,7 +61,7 @@ message ChainDescriptor { // CodecDescriptor describes the registered interfaces and provides metadata information on the types message CodecDescriptor { - // interfaces is a list of the registeed interfaces descriptors + // interfaces is a list of the registered interfaces descriptors repeated InterfaceDescriptor interfaces = 1; } diff --git a/proto/cosmos/base/tendermint/v1beta1/query.proto b/proto/cosmos/base/tendermint/v1beta1/query.proto index aada561f3b..64d0e5c57f 100644 --- a/proto/cosmos/base/tendermint/v1beta1/query.proto +++ b/proto/cosmos/base/tendermint/v1beta1/query.proto @@ -58,7 +58,7 @@ service Service { // GetValidatorSetByHeightRequest is the request type for the Query/GetValidatorSetByHeight RPC method. message GetValidatorSetByHeightRequest { int64 height = 1; - // pagination defines an pagination for the request. + // pagination defines a pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; } @@ -66,13 +66,13 @@ message GetValidatorSetByHeightRequest { message GetValidatorSetByHeightResponse { int64 block_height = 1; repeated Validator validators = 2; - // pagination defines an pagination for the response. + // pagination defines a pagination for the response. cosmos.base.query.v1beta1.PageResponse pagination = 3; } // GetLatestValidatorSetRequest is the request type for the Query/GetValidatorSetByHeight RPC method. message GetLatestValidatorSetRequest { - // pagination defines an pagination for the request. + // pagination defines a pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 1; } @@ -80,7 +80,7 @@ message GetLatestValidatorSetRequest { message GetLatestValidatorSetResponse { int64 block_height = 1; repeated Validator validators = 2; - // pagination defines an pagination for the response. + // pagination defines a pagination for the response. cosmos.base.query.v1beta1.PageResponse pagination = 3; } diff --git a/proto/cosmos/base/v1beta1/coin.proto b/proto/cosmos/base/v1beta1/coin.proto index 1447d642d5..c3e634daab 100644 --- a/proto/cosmos/base/v1beta1/coin.proto +++ b/proto/cosmos/base/v1beta1/coin.proto @@ -27,7 +27,7 @@ message Coin { // DecCoin defines a token with a denomination and a decimal amount. // -// NOTE: The amount field is an Dec which implements the custom method +// NOTE: The amount field is a Dec which implements the custom method // signatures required by gogoproto. message DecCoin { option (gogoproto.equal) = true; diff --git a/proto/cosmos/circuit/v1/tx.proto b/proto/cosmos/circuit/v1/tx.proto index 82cc826289..c654fba28c 100644 --- a/proto/cosmos/circuit/v1/tx.proto +++ b/proto/cosmos/circuit/v1/tx.proto @@ -18,7 +18,7 @@ service Msg { rpc TripCircuitBreaker(MsgTripCircuitBreaker) returns (MsgTripCircuitBreakerResponse); // ResetCircuitBreaker resumes processing of Msg's in the state machine that - // have been been paused using TripCircuitBreaker. + // have been paused using TripCircuitBreaker. rpc ResetCircuitBreaker(MsgResetCircuitBreaker) returns (MsgResetCircuitBreakerResponse); } diff --git a/proto/cosmos/feegrant/v1beta1/query.proto b/proto/cosmos/feegrant/v1beta1/query.proto index b2e4e89fb8..10e46f8226 100644 --- a/proto/cosmos/feegrant/v1beta1/query.proto +++ b/proto/cosmos/feegrant/v1beta1/query.proto @@ -39,7 +39,7 @@ message QueryAllowanceRequest { // QueryAllowanceResponse is the response type for the Query/Allowance RPC method. message QueryAllowanceResponse { - // allowance is a allowance granted for grantee by granter. + // allowance is an allowance granted for grantee by granter. cosmos.feegrant.v1beta1.Grant allowance = 1; } @@ -47,7 +47,7 @@ message QueryAllowanceResponse { message QueryAllowancesRequest { string grantee = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; - // pagination defines an pagination for the request. + // pagination defines a pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; } @@ -56,7 +56,7 @@ message QueryAllowancesResponse { // allowances are allowance's granted for grantee by granter. repeated cosmos.feegrant.v1beta1.Grant allowances = 1; - // pagination defines an pagination for the response. + // pagination defines a pagination for the response. cosmos.base.query.v1beta1.PageResponse pagination = 2; } @@ -65,7 +65,7 @@ message QueryAllowancesByGranterRequest { option (cosmos_proto.message_added_in) = "cosmos-sdk 0.46"; string granter = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; - // pagination defines an pagination for the request. + // pagination defines a pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; } @@ -75,6 +75,6 @@ message QueryAllowancesByGranterResponse { // allowances that have been issued by the granter. repeated cosmos.feegrant.v1beta1.Grant allowances = 1; - // pagination defines an pagination for the response. + // pagination defines a pagination for the response. cosmos.base.query.v1beta1.PageResponse pagination = 2; } diff --git a/proto/cosmos/nft/v1beta1/query.proto b/proto/cosmos/nft/v1beta1/query.proto index ae482e4ce2..8b89ecdc9b 100644 --- a/proto/cosmos/nft/v1beta1/query.proto +++ b/proto/cosmos/nft/v1beta1/query.proto @@ -88,7 +88,7 @@ message QuerySupplyResponse { uint64 amount = 1; } -// QueryNFTstRequest is the request type for the Query/NFTs RPC method +// QueryNFTsRequest is the request type for the Query/NFTs RPC method message QueryNFTsRequest { // class_id associated with the nft string class_id = 1; diff --git a/proto/cosmos/vesting/v1beta1/vesting.proto b/proto/cosmos/vesting/v1beta1/vesting.proto index a766fd9876..4e797fc416 100644 --- a/proto/cosmos/vesting/v1beta1/vesting.proto +++ b/proto/cosmos/vesting/v1beta1/vesting.proto @@ -50,7 +50,7 @@ message ContinuousVestingAccount { } // DelayedVestingAccount implements the VestingAccount interface. It vests all -// coins after a specific time, but non prior. In other words, it keeps them +// coins after a specific time, but not prior. In other words, it keeps them // locked until a specified time. message DelayedVestingAccount { option (amino.name) = "cosmos-sdk/DelayedVestingAccount";