From d258eee21177326c136893bb100285376a3f297c Mon Sep 17 00:00:00 2001
From: Abel Nieto <anietoro@uwaterloo.ca>
Date: Tue, 29 May 2018 13:22:00 +0200
Subject: core/vm: fix typo in comment

---
 core/vm/jump_table.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/vm/jump_table.go b/core/vm/jump_table.go
index 338994135..49a94d964 100644
--- a/core/vm/jump_table.go
+++ b/core/vm/jump_table.go
@@ -33,7 +33,7 @@ type (
 var errGasUintOverflow = errors.New("gas uint64 overflow")
 
 type operation struct {
-	// op is the operation function
+	// execute is the operation function
 	execute executionFunc
 	// gasCost is the gas function and returns the gas required for execution
 	gasCost gasFunc
-- 
cgit