diff --git a/ethutil/mnemonic.go b/ethutil/mnemonic.go
index d21c20f003be04ec820bf4afb834a525ffd12990..cc58de84a04c53e7d84aca7b4518f0be1e6e9df3 100644
--- a/ethutil/mnemonic.go
+++ b/ethutil/mnemonic.go
@@ -5,6 +5,7 @@ import (
 	"strconv"
 )
 
+// Electrum word list
 var words []string = []string{
 	"like",
 	"just",
@@ -1673,6 +1674,7 @@ func MnemonicDecode(wordsar []string) string {
 		z := (w3 - w2) % n
 
 		// Golang handles modulo with negative numbers different then most languages
+		// The modulo can be negative, we don't want that.
 		if z < 0 {
 			z += n
 		}