From 0cc9b8791e63473c1c06609010ef51c587c82bcb Mon Sep 17 00:00:00 2001 From: evgk Date: Fri, 4 Aug 2017 05:31:18 +0600 Subject: [PATCH] core/vm: fix typo in comment (#14894) --- core/vm/interpreter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/interpreter.go b/core/vm/interpreter.go index 0a225bca41..3faa987047 100644 --- a/core/vm/interpreter.go +++ b/core/vm/interpreter.go @@ -44,7 +44,7 @@ type Config struct { // Enable recording of SHA3/keccak preimages EnablePreimageRecording bool // JumpTable contains the EVM instruction table. This - // may me left uninitialised and will be set the default + // may be left uninitialised and will be set to the default // table. JumpTable [256]operation }