fix: correct typos across codebase (#25335)

This commit is contained in:
sashaodessa
2025-09-10 19:36:08 +00:00
committed by GitHub
parent b848f4c6cb
commit 6c5882bc40
9 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -33,5 +33,5 @@ type ABCI interface {
ListSnapshots(*abci.RequestListSnapshots) (*abci.ResponseListSnapshots, error) // List available snapshots
OfferSnapshot(*abci.RequestOfferSnapshot) (*abci.ResponseOfferSnapshot, error) // Offer a snapshot to the application
LoadSnapshotChunk(*abci.RequestLoadSnapshotChunk) (*abci.ResponseLoadSnapshotChunk, error) // Load a snapshot chunk
ApplySnapshotChunk(*abci.RequestApplySnapshotChunk) (*abci.ResponseApplySnapshotChunk, error) // Apply a shapshot chunk
ApplySnapshotChunk(*abci.RequestApplySnapshotChunk) (*abci.ResponseApplySnapshotChunk, error) // Apply a snapshot chunk
}