浏览代码

accounts/abi: fix typo in the comment (dummy commit)

Péter Szilágyi 9 年之前
父节点
当前提交
06ac31cf1a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      accounts/abi/abi.go

+ 1 - 1
accounts/abi/abi.go

@@ -77,7 +77,7 @@ func (abi ABI) Pack(name string, args ...interface{}) ([]byte, error) {
 	return append(method.Id(), arguments...), nil
 }
 
-// toGoSliceType prses the input and casts it to the proper slice defined by the ABI
+// toGoSliceType parses the input and casts it to the proper slice defined by the ABI
 // argument in T.
 func toGoSlice(i int, t Argument, output []byte) (interface{}, error) {
 	index := i * 32