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(docs): fix functions and struct comments #21010

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
fix: function and struct comments
  • Loading branch information
winniehere committed Jul 22, 2024
commit c5affeffb492b68b0c9b564178bcffaab144e48a
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
Loading