Skip to content

Commit 376c72a

Browse files
authored
Fix small typos (#3809)
Signed-off-by: Marco <wudmytrotest200@gmail.com>
1 parent 47ee36e commit 376c72a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

database/iterator.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// See the file LICENSE for licensing terms.
33

44
// For ease of implementation, our database's interface matches Ethereum's
5-
// database implementation. This was to allow use to use Geth code as is for the
5+
// database implementation. This was to allow us to use Geth code as is for the
66
// EVM chain.
77

88
package database
@@ -28,7 +28,7 @@ type Iterator interface {
2828

2929
// Error returns any accumulated error. Exhausting all the key/value pairs
3030
// is not considered to be an error.
31-
// Error should be called after all key/value pairs have been exhausted ie.
31+
// Error should be called after all key/value pairs have been exhausted i.e.
3232
// after Next() has returned false.
3333
Error() error
3434

@@ -43,7 +43,7 @@ type Iterator interface {
4343
Value() []byte
4444

4545
// Release releases associated resources. Release should always succeed and
46-
// can be called multiple times without causing error.
46+
// can be called multiple times without causing an error.
4747
Release()
4848
}
4949

0 commit comments

Comments
 (0)