Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(proto/ibc): typo fix #5354

Merged
merged 6 commits into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 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
Loading