docs: fix misspelled issues (#24989)

Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
This commit is contained in:
David Klank
2025-07-29 20:06:24 +00:00
committed by GitHub
co-authored by Alex | Interchain Labs
parent 255829400d
commit 892f4d868c
9 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
## [v0.10.0](https://github.com/cosmos/cosmos-sdk/releases/tag/core%2Fv0.10.0)
* [#17383](https://github.com/cosmos/cosmos-sdk/pull/17383) Add `appmoduke.UpgradeModule` interface.
* [#17383](https://github.com/cosmos/cosmos-sdk/pull/17383) Add `appmodule.UpgradeModule` interface.
## [v0.9.0](https://github.com/cosmos/cosmos-sdk/releases/tag/core%2Fv0.9.0)
+1 -1
View File
@@ -36,7 +36,7 @@ type GenesisSource = func(field string) (io.ReadCloser, error)
// abstract over a single JSON object or JSON in separate files that can be
// streamed over. Modules should open a separate io.WriteCloser for each field
// and should prefer writing fields as arrays when possible to support efficient
// iteration. It is important the caller closers the writer AND checks the error
// iteration. It is important the caller closes the writer AND checks the error
// when done with it. It is expected that a stream of JSON data is written
// to the writer.
type GenesisTarget = func(field string) (io.WriteCloser, error)
+1 -1
View File
@@ -55,7 +55,7 @@ type CommitInfo interface {
Votes() VoteInfos
}
// VoteInfos is an interface to get specific votes in a efficient way
// VoteInfos is an interface to get specific votes in an efficient way
type VoteInfos interface {
Len() int
Get(int) VoteInfo