Skip to content

Commit 24cab2d

Browse files
authored
core/vm/runtime: fix typos in comment (#20608)
1 parent 594e038 commit 24cab2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/vm/runtime/runtime.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ func setDefaults(cfg *Config) {
9090
// Execute executes the code using the input as call data during the execution.
9191
// It returns the EVM's return value, the new state and an error if it failed.
9292
//
93-
// Executes sets up a in memory, temporarily, environment for the execution of
94-
// the given code. It makes sure that it's restored to it's original state afterwards.
93+
// Execute sets up an in-memory, temporary, environment for the execution of
94+
// the given code. It makes sure that it's restored to its original state afterwards.
9595
func Execute(code, input []byte, cfg *Config) ([]byte, *state.StateDB, error) {
9696
if cfg == nil {
9797
cfg = new(Config)

0 commit comments

Comments
 (0)