diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-01-13 17:14:47 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-01-13 17:14:47 +0800 |
commit | c01f8c3d3c286244292718133544e17be32000cc (patch) | |
tree | 75d21b512b5b3eacd55878e1adcf96e733e34015 | |
parent | e4181a7f1b9783c27cf2fc6a54a50da28a3b9e0b (diff) | |
download | dexon-c01f8c3d3c286244292718133544e17be32000cc.tar.gz dexon-c01f8c3d3c286244292718133544e17be32000cc.tar.zst dexon-c01f8c3d3c286244292718133544e17be32000cc.zip |
accounts/abi: fix comment spelling error
-rw-r--r-- | accounts/abi/type.go | 2 |
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 { |