Skip to content

Commit d9c75cd

Browse files
authored
accounts/abi/bind: fix typo in comments (#19791)
1 parent 6814797 commit d9c75cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

accounts/abi/bind/bind.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ var bindTopicType = map[Lang]func(kind abi.Type, structs map[string]*tmplStruct)
309309
LangJava: bindTopicTypeJava,
310310
}
311311

312-
// bindTypeGo converts a Solidity topic type to a Go one. It is almost the same
312+
// bindTopicTypeGo converts a Solidity topic type to a Go one. It is almost the same
313313
// funcionality as for simple types, but dynamic types get converted to hashes.
314314
func bindTopicTypeGo(kind abi.Type, structs map[string]*tmplStruct) string {
315315
bound := bindTypeGo(kind, structs)
@@ -319,7 +319,7 @@ func bindTopicTypeGo(kind abi.Type, structs map[string]*tmplStruct) string {
319319
return bound
320320
}
321321

322-
// bindTypeGo converts a Solidity topic type to a Java one. It is almost the same
322+
// bindTopicTypeJava converts a Solidity topic type to a Java one. It is almost the same
323323
// funcionality as for simple types, but dynamic types get converted to hashes.
324324
func bindTopicTypeJava(kind abi.Type, structs map[string]*tmplStruct) string {
325325
bound := bindTypeJava(kind, structs)

0 commit comments

Comments
 (0)