aboutsummaryrefslogtreecommitdiffstats
path: root/accounts
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-01-13 18:16:22 +0800
committerGitHub <noreply@github.com>2017-01-13 18:16:22 +0800
commitb5a100b859213dbb7d4545ce53dabab398b4191e (patch)
tree25f3be47fff013457785e9d87d08cadc589b7cf2 /accounts
parent01f6f2d741e717f669b7ba1d6b88991f28e30c72 (diff)
parent54fcab20e30cdae23809deb371f120b5ba47d258 (diff)
downloadgo-tangerine-b5a100b859213dbb7d4545ce53dabab398b4191e.tar
go-tangerine-b5a100b859213dbb7d4545ce53dabab398b4191e.tar.gz
go-tangerine-b5a100b859213dbb7d4545ce53dabab398b4191e.tar.bz2
go-tangerine-b5a100b859213dbb7d4545ce53dabab398b4191e.tar.lz
go-tangerine-b5a100b859213dbb7d4545ce53dabab398b4191e.tar.xz
go-tangerine-b5a100b859213dbb7d4545ce53dabab398b4191e.tar.zst
go-tangerine-b5a100b859213dbb7d4545ce53dabab398b4191e.zip
Merge pull request #3560 from karalabe/ci-misspell
travis, appveyor, build: add source spell checking
Diffstat (limited to 'accounts')
-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 {