Skip to content

Commit

Permalink
chore(proto/ibc): fix in protodocs and contributing.md (#5354)
Browse files Browse the repository at this point in the history
* typo fix

* typo fix

* fix typo

* typo fix

* typo fix

* make proto-gen

---------

Co-authored-by: DimitrisJim <d.f.hilliard@gmail.com>
  • Loading branch information
Ursulafe and DimitrisJim committed Dec 11, 2023
1 parent ab8a23d commit 65d6437
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Please make sure to check out our [Pull request guidelines](./docs/dev/pull-requ
## Relevant development docs

- [Project structure](./docs/dev/project-structure.md)
- [Develoment setup](./docs/dev/development-setup.md)
- [Development setup](./docs/dev/development-setup.md)
- [Go style guide](./docs/dev/go-style-guide.md)
- [Documentation guide](./docs/README.md)
- [Writing tests](./testing/README.md)
Expand Down
2 changes: 1 addition & 1 deletion modules/apps/29-fee/types/genesis.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/apps/29-fee/types/tx.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/core/02-client/types/query.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/core/04-channel/types/channel.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/ibc/applications/fee/v1/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ message RegisteredCounterpartyPayee {
message ForwardRelayerAddress {
// the forward relayer address
string address = 1;
// unique packet identifer comprised of the channel ID, port ID and sequence
// unique packet identifier comprised of the channel ID, port ID and sequence
ibc.core.channel.v1.PacketId packet_id = 2 [(gogoproto.nullable) = false];
}
2 changes: 1 addition & 1 deletion proto/ibc/applications/fee/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ message MsgPayPacketFee {
ibc.applications.fee.v1.Fee fee = 1 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
// the source port unique identifier
string source_port_id = 2;
// the source channel unique identifer
// the source channel unique identifier
string source_channel_id = 3;
// account address to refund fee if necessary
string signer = 4;
Expand Down
2 changes: 1 addition & 1 deletion proto/ibc/core/channel/v1/channel.proto
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ message PacketState {
bytes data = 4;
}

// PacketId is an identifer for a unique Packet
// PacketId is an identifier for a unique Packet
// Source chains refer to packets by source port/channel
// Destination chains refer to packets by destination port/channel
message PacketId {
Expand Down
2 changes: 1 addition & 1 deletion proto/ibc/core/client/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ message QueryConsensusStateRequest {
uint64 revision_number = 2;
// consensus state revision height
uint64 revision_height = 3;
// latest_height overrrides the height field and queries the latest stored
// latest_height overrides the height field and queries the latest stored
// ConsensusState
bool latest_height = 4;
}
Expand Down

0 comments on commit 65d6437

Please sign in to comment.