chore: fix spelling errors (#18870)

Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com>
This commit is contained in:
Cosmos SDK 2023-12-22 16:39:12 +01:00 committed by GitHub
parent 19e66a9dc8
commit 9c00cf2c84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -77,6 +77,6 @@ type Iterator interface {
// Error returns the last error encountered by the iterator, if any.
Error() error
// Close closes the iterator, relasing any allocated resources.
// Close closes the iterator, releasing any allocated resources.
Close() error
}

View File

@ -116,7 +116,7 @@ func (iw IteratorWrapper) Error() error {
return iw.itr.Error()
}
// Close closes the iterator, relasing any allocated resources.
// Close closes the iterator, releasing any allocated resources.
func (iw IteratorWrapper) Close() error {
return iw.itr.Close()
}