Skip to content

Commit

Permalink
chore(docs): fix functions and struct comments (#21010)
Browse files Browse the repository at this point in the history
  • Loading branch information
winniehere authored Jul 22, 2024
1 parent f9f2ad7 commit 331eaf4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion api/cosmos/base/node/v1beta1/query.pulsar.go

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

2 changes: 1 addition & 1 deletion client/grpc/node/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 proto/cosmos/base/node/v1beta1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ message ConfigResponse {
// StatusRequest defines the request structure for the status of a node.
message StatusRequest {}

// StateResponse defines the response structure for the status of a node.
// StatusResponse defines the response structure for the status of a node.
message StatusResponse {
uint64 earliest_store_height = 1; // earliest block height available in the store
uint64 height = 2; // current block height
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/example/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func Example() {
// Output: 10000
}

// ExampleOneModule shows how to use the integration test framework to test the integration of a single module.
// Example_oneModule shows how to use the integration test framework to test the integration of a single module.
// That module has no dependency on other modules.
func Example_oneModule() {
// in this example we are testing the integration of the auth module:
Expand Down
2 changes: 1 addition & 1 deletion x/auth/ante/sigverify.go
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ func NewValidateSigCountDecorator(ak AccountKeeper) ValidateSigCountDecorator {
}
}

// AnteHandler implements an ante decorator for ValidateSigCountDecorator
// AnteHandle implements an ante decorator for ValidateSigCountDecorator
func (vscd ValidateSigCountDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, _ bool, next sdk.AnteHandler) (newCtx sdk.Context, err error) {
if err := vscd.ValidateTx(ctx, tx); err != nil {
return ctx, err
Expand Down

0 comments on commit 331eaf4

Please sign in to comment.