chore: fix grammatical errors and improve text clarity (#25171)

This commit is contained in:
Jammy Arkens
2025-08-14 15:09:13 +00:00
committed by GitHub
parent e01dd61fd2
commit 9e1a4a9bef
13 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ type ABCI interface {
CheckTx(*abci.CheckTxRequest) (*abci.CheckTxResponse, error) // Validate a tx for the mempool
// Consensus Connection
InitChain(*abci.InitChainRequest) (*abci.InitChainResponse, error) // Initialize blockchain w validators/other info from CometBFT
InitChain(*abci.InitChainRequest) (*abci.InitChainResponse, error) // Initialize blockchain with validators/other info from CometBFT
PrepareProposal(*abci.PrepareProposalRequest) (*abci.PrepareProposalResponse, error)
ProcessProposal(*abci.ProcessProposalRequest) (*abci.ProcessProposalResponse, error)
// Deliver the decided block with its txs to the Application
+3 -3
View File
@@ -40,7 +40,7 @@ type (
RegisterAPIRoutes(*api.Server, config.APIConfig)
// RegisterGRPCServerWithSkipCheckHeader registers gRPC services directly with the gRPC
// server and bypass check header flag.
// server and bypasses check header flag.
RegisterGRPCServerWithSkipCheckHeader(grpc.Server, bool)
// RegisterTxService registers the gRPC Query service for tx (such as tx
@@ -53,10 +53,10 @@ type (
// RegisterNodeService registers the node gRPC Query service.
RegisterNodeService(client.Context, config.Config)
// CommitMultiStore return the multistore instance
// CommitMultiStore returns the multistore instance
CommitMultiStore() storetypes.CommitMultiStore
// Return the snapshot manager
// Returns the snapshot manager
SnapshotManager() *snapshots.Manager
// Close is called in start cmd to gracefully cleanup resources.