File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
// See the file LICENSE for licensing terms.
3
3
4
4
// 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
6
6
// EVM chain.
7
7
8
8
package database
@@ -28,7 +28,7 @@ type Iterator interface {
28
28
29
29
// Error returns any accumulated error. Exhausting all the key/value pairs
30
30
// 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 .
32
32
// after Next() has returned false.
33
33
Error () error
34
34
@@ -43,7 +43,7 @@ type Iterator interface {
43
43
Value () []byte
44
44
45
45
// 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.
47
47
Release ()
48
48
}
49
49
You can’t perform that action at this time.
0 commit comments