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 15:39:12 +00:00
committed by GitHub
co-authored by github-merge-queue
parent 19e66a9dc8
commit 9c00cf2c84
2 changed files with 2 additions and 2 deletions
+1 -1
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
}
+1 -1
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()
}