fix: multiple typos of different importance (#25046)

Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
This commit is contained in:
emmmm 2025-07-30 11:36:49 -04:00 committed by GitHub
parent fbc2301bd5
commit c6e603a4e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 23 additions and 23 deletions

View File

@ -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;
}
}

View File

@ -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;
}

View File

@ -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;

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;

View File

@ -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);
}

View File

@ -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;
}

View File

@ -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;

View File

@ -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";