aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-01-13 17:14:47 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-01-13 17:14:47 +0800
commitc01f8c3d3c286244292718133544e17be32000cc (patch)
tree75d21b512b5b3eacd55878e1adcf96e733e34015 /accounts/abi
parente4181a7f1b9783c27cf2fc6a54a50da28a3b9e0b (diff)
downloadgo-tangerine-c01f8c3d3c286244292718133544e17be32000cc.tar
go-tangerine-c01f8c3d3c286244292718133544e17be32000cc.tar.gz
go-tangerine-c01f8c3d3c286244292718133544e17be32000cc.tar.bz2
go-tangerine-c01f8c3d3c286244292718133544e17be32000cc.tar.lz
go-tangerine-c01f8c3d3c286244292718133544e17be32000cc.tar.xz
go-tangerine-c01f8c3d3c286244292718133544e17be32000cc.tar.zst
go-tangerine-c01f8c3d3c286244292718133544e17be32000cc.zip
accounts/abi: fix comment spelling error
Diffstat (limited to 'accounts/abi')
-rw-r--r--accounts/abi/type.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/abi/type.go b/accounts/abi/type.go
index ed3e33f39..f2832aef5 100644
--- a/accounts/abi/type.go
+++ b/accounts/abi/type.go
@@ -91,7 +91,7 @@ func NewType(t string) (typ Type, err error) {
}
typ.Elem = &sliceType
typ.stringKind = sliceType.stringKind + t[len(res[1]):]
- // Altough we know that this is an array, we cannot return
+ // Although we know that this is an array, we cannot return
// as we don't know the type of the element, however, if it
// is still an array, then don't determine the type.
if typ.Elem.IsArray || typ.Elem.IsSlice {